use column to display nice tabular output from status
[sysadmin-cookbook] / recepies / lxc / lxc-watchdog.sh
index 33f9e9c..0218bb1 100755 (executable)
@@ -42,11 +42,11 @@ lxc_rootfs() {
 
 
 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
 }