diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rwxr-xr-x | handlers/sys | 2 |
2 files changed, 7 insertions, 2 deletions
@@ -1,4 +1,9 @@ -version 0.9.4 -- unreleased +version 0.9.5 -- unreleased + handler changes + sys: + . Fixed typo breaking things for VServers. + +version 0.9.4 -- October 6th, 2006 backupninja changes . Fixed bug in toint(), and thus isnow(), which caused it to not work when run from cron. diff --git a/handlers/sys b/handlers/sys index 84c9540..6ae736d 100755 --- a/handlers/sys +++ b/handlers/sys @@ -115,7 +115,7 @@ if [ "$packages" == "yes" ]; then set -o noglob debug "$VSERVER $vserver exec $packagemgr $packagemgroptions > $VROOTDIR/$vserver$packagesfile" $VSERVER $vserver exec $packagemgr $packagemgroptions > $VROOTDIR/$vserver$packagesfile || fatal "can not save $packagemgr info to $packagesfile" - set +o noglog + set +o noglob done fi |