From: intrigeri Date: Wed, 25 Jun 2008 09:00:04 +0000 (+0000) Subject: sys: fixed debconf-get-selections search in VServers, especially in case it is not... X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fbackupninja.git;a=commitdiff_plain;h=c9136e6c5850d554cee4fab6a855975d0d4d5b4b sys: fixed debconf-get-selections search in VServers, especially in case it is not available on the host git-svn-id: http://code.autistici.org/svn/backupninja/trunk@584 758a04ac-41e6-0310-8a23-8373a73cc35d --- diff --git a/handlers/sys.in b/handlers/sys.in index a029af6..cc8ed09 100755 --- a/handlers/sys.in +++ b/handlers/sys.in @@ -126,11 +126,11 @@ if [ "$packages" == "yes" ]; then set +o noglob fi # is $debconfgetselections available inside $vserver ? - if [ ! -x "$VROOTDIR/$vserver`$VSERVER $vserver exec which $debconfgetselections`" ]; then - warning "can't find $debconfgetselections in vserver $vserver, skipping package selection states." + if [ -z "`$VSERVER $vserver exec which debconf-get-selections`" ]; then + warning "can't find debconf-get-selections in vserver $vserver, skipping package selection states." else debug "$VSERVER $vserver exec $debconfgetselections > $VROOTDIR/$vserver$selectionsfile" - $VSERVER $vserver exec $debconfgetselections > $VROOTDIR/$vserver$selectionsfile || fatal "can not save $debconfgetselections info to $selectionsfile" + $VSERVER $vserver exec $debconfgetselections > $VROOTDIR/$vserver$selectionsfile || fatal "can not save debconf-get-selections info to $selectionsfile" fi done fi