f398d73c53
This PS cleans up the entrypoint scripts to remove unrequired functions. Change-Id: Ibc445e422c1ebad972de59b47955511d14dd6d3c
20 lines
279 B
Smarty
20 lines
279 B
Smarty
#!/bin/bash
|
|
set -ex
|
|
export LC_ALL=C
|
|
|
|
source variables_entrypoint.sh
|
|
source common_functions.sh
|
|
|
|
function watch_mon_health {
|
|
|
|
while [ true ]
|
|
do
|
|
log "checking for zombie mons"
|
|
/check_zombie_mons.py || true
|
|
log "sleep 30 sec"
|
|
sleep 30
|
|
done
|
|
}
|
|
|
|
watch_mon_health
|