From b883d7dbc7c81a804a66508edf675aaf10aa3030 Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Wed, 24 Mar 2010 19:06:42 +0000 Subject: [PATCH] use column to display nice tabular output from status git-svn-id: svn://svn.rot13.org/sysadmin-cookbook@196 191e9f34-6774-4a6d-acfc-7664dacd4a2a --- recepies/lxc/lxc-watchdog.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recepies/lxc/lxc-watchdog.sh b/recepies/lxc/lxc-watchdog.sh index 33f9e9c..0218bb1 100755 --- a/recepies/lxc/lxc-watchdog.sh +++ b/recepies/lxc/lxc-watchdog.sh @@ -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 } -- 2.20.1