--- recepies/lxc/lxc-watchdog.sh 2010/03/24 19:03:16 195 +++ recepies/lxc/lxc-watchdog.sh 2010/03/24 19:06:42 196 @@ -42,11 +42,11 @@ 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 - boot=" " + ( 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 + boot="-" test -s /var/lib/lxc/$name/on_boot && boot="boot" echo "$name $status $boot $(lxc_rootfs $name)" - done + done ) | column -t }