aboutsummaryrefslogtreecommitdiff
path: root/handlers
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2005-07-19 15:24:50 +0000
committerMicah Anderson <micah@riseup.net>2005-07-19 15:24:50 +0000
commit5c7bc95bc11f280d53cbe1de9e78c631f94fe108 (patch)
treeec2a05819ede1598749b005b5c482250d29236ab /handlers
parent581049b6b103ed64c7a7ccb7b364a9d9b1597495 (diff)
downloadbackupninja-5c7bc95bc11f280d53cbe1de9e78c631f94fe108.tar.gz
backupninja-5c7bc95bc11f280d53cbe1de9e78c631f94fe108.tar.bz2
Fixed sys handler bracket problem
Diffstat (limited to 'handlers')
-rwxr-xr-xhandlers/sys2
1 files changed, 1 insertions, 1 deletions
diff --git a/handlers/sys b/handlers/sys
index bc117c4..e095b45 100755
--- a/handlers/sys
+++ b/handlers/sys
@@ -49,7 +49,7 @@ if [ "$packages" == "yes" ]; then
for vserver in `ls $VROOTDIR |grep -v lost+found`
do
running=`vserver-info $vserver RUNNING`
- if [ $running = 1]; then
+ if [ $running = 1 ]; then
if [ ! -x "`$VSERVER $vserver exec which dpkg`" ]; then
warning "can't find dpkg in vserver $vserver, skipping installed packages report."
nodpkg="$nodpkg $vserver"