--- recepies/lxc/lxc-watchdog.sh 2011/03/24 16:40:46 243 +++ recepies/lxc/lxc-watchdog.sh 2011/12/13 12:54:24 284 @@ -54,7 +54,9 @@ } lxc_status() { - ( find /var/lib/lxc/ -name "config" | cut -d/ -f5 | sort -u | xargs -i lxc-info -n {} | sed "s/'//g" | while read name is status ; do + ( find /var/lib/lxc/ -name "config" | cut -d/ -f5 | sort -u | while read name ; do + status=`lxc-info -n $name 2>/dev/null | grep state: | cut -d: -f2` # 0.7.5 + test -z "$status" && status=`lxc-info -n $name | sed -e 's/^.* is //'` # 0.7.2 boot="-" test -s /var/lib/lxc/$name/on_boot && boot="boot" echo "$name $status $boot $(lxc_rootfs $name) $(lxc_ip $name) $(lxc_hostname $name)" @@ -104,7 +106,11 @@ name=$1 sig=$2 - init_pid=`lxc-ps -C init -o pid | grep "^$name" | cut -d" " -f2-` + ver=`lxc-version | cut -d: -f2 | sed 's/\.//g'` + opts='' + test $ver -ge 075 && opts='--' + + init_pid=`lxc-ps $opts -C init -o pid | grep "^$name" | cut -d" " -f2-` if [ -z "$init_pid" ] ; then lxc-info -n $name exit 1 @@ -133,7 +139,8 @@ if ! lxc-info -n $name | grep RUNNING ; then lxc_log "$name start" - mount $rootfs -o remount,rw # fix debian upgrade which remounts dir ro + dev=`df -P $rootfs | tail -1 | cut -d" " -f1` + mount $dev -o remount,rw # fix debian upgrade which remounts dir ro lxc-start -n $name -o /tmp/${name}.log -d lxc-wait -n $name -s RUNNING lxc-info -n $name @@ -144,12 +151,14 @@ lxc_watchdog() { name=$1 rootfs=$(lxc_rootfs $1) +run=$rootfs/var/run +test -L $run && run=$rootfs/`readlink $run` # recent Debian have symlink to /run +cd $run || echo "can't cd watchdog into $run" while true; do - vps_utmp=${rootfs}/var/run/utmp tasks=`wc -l < /cgroup/${name}/tasks` stop_on=1 # init - sulogins=`lxc-ps --name backuppc | grep sulogin | wc -l` + sulogins=`lxc-ps --name $name | grep sulogin | wc -l` if [ "$sulogins" -gt 0 ] ; then stop_on=`expr $stop_on + $sulogins` fi @@ -157,14 +166,14 @@ test -z "$tasks" && exit 1 if [ "$tasks" -eq $stop_on ]; then - runlevel="$(runlevel ${vps_utmp})" + runlevel="$(runlevel utmp)" lxc_log "$name runlevel $runlevel" case $runlevel in N*) # nothing for new boot state ;; - ??0) + ??0|unknown) lxc_log "$name halt" lxc-stop -n "${name}" lxc-wait -n ${name} -s STOPPED @@ -187,7 +196,7 @@ fi # time of 5 minutes on it JUST IN CASE... - inotifywait -qqt 300 ${vps_utmp} + inotifywait -qqt 300 utmp done lxc_log "$name watchdog exited"