use column to display nice tabular output from status
authorDobrica Pavlinusic <dpavlin@rot13.org>
Wed, 24 Mar 2010 19:06:42 +0000 (19:06 +0000)
committerDobrica Pavlinusic <dpavlin@rot13.org>
Wed, 24 Mar 2010 19:06:42 +0000 (19:06 +0000)
git-svn-id: svn://svn.rot13.org/sysadmin-cookbook@196 191e9f34-6774-4a6d-acfc-7664dacd4a2a

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
 }