X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fbackupninja.git;a=blobdiff_plain;f=handlers%2Fsys;h=310d921de92a9c89559469ec9b9e7f7115d9190a;hp=a8c8771ff59e536f4c8ce0fbfab8eccda870713c;hb=2e9bb3f05ec6de01e4ed3088a65ebb93c39ca2be;hpb=e6bf696c5abce63ef6fe59dbff115a6acd56ce77 diff --git a/handlers/sys b/handlers/sys index a8c8771..310d921 100755 --- a/handlers/sys +++ b/handlers/sys @@ -37,18 +37,19 @@ if [ $os = "debian" ] then getconf packagesfile /var/backups/dpkg-selections.txt getconf packagemgr `which dpkg` - getconf packagemgroptions " --get-selections" + getconf packagemgroptions ' --get-selections *' elif [ $os = "redhat" ] then getconf packagesfile /var/backups/rpmpackages.txt getconf packagemgr `which rpm` - getconf packagemgroptions " -qa " + getconf packagemgroptions ' -qa ' getconf SYSREPORT `which sysreport` - getconf sysreport_options " -norpm " + getconf sysreport_options ' -norpm ' else getconf packagesfile /var/backups/unknownOS.txt fi +packagemgroptions="${packagemgroptions//__star__/*}" getconf partitions yes getconf partitionsfile /var/backups/partitions.__star__.txt @@ -93,7 +94,6 @@ if [ "$packages" == "yes" ]; then nodpkg="$nodpkg|$vserver" fi else - warning "vserver $vserver is not running, skipping installed packages report." nodpkg="$nodpkg|$vserver" fi @@ -111,15 +111,21 @@ if [ "$packages" == "yes" ]; then then for vserver in `ls $VROOTDIR | grep -E -v $nodpkg` do + # don't expand * since it can be used in $packagemgroptions + 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 done fi # We want to perform this on the host as well if [ "$packages" == "yes" ]; then + # don't expand * since it can be used in $packagemgroptions + set -o noglob debug "$packagemgr $packagemgroptions > $packagesfile" $packagemgr $packagemgroptions > $packagesfile || fatal "can not save $packagemgr info to $packagesfile" + set +o noglob fi fi