X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fbackupninja.git;a=blobdiff_plain;f=handlers%2Fsys;h=84c95403686245326108947e59c87b3762e5864f;hp=d0e2057d50bc15fdb48368c718f2a67882fb6939;hb=2dd5981aadc4c895f983f1ec897880fb6ea12388;hpb=7814d463e4e1f55b8b34c019f49a384aeee00193 diff --git a/handlers/sys b/handlers/sys index d0e2057..84c9540 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 @@ -285,7 +291,7 @@ catiffile "/proc/stat" STATUS="Gathering information about your partitions:" catiffile "/proc/partitions" -STATUS="Gathering information about your ksysms:" +STATUS="Gathering information about your ksyms:" catiffile "/proc/ksyms" STATUS="Gathering information about slabinfo:" @@ -449,7 +455,7 @@ fi # these files can be used to directly partition a disk of the same size. if [ "$partitions" == "yes" ]; then - devices=`$HWINFO --disk | grep "Device File" | cut -d\ -f5` + devices=`$SFDISK -l | grep "^Disk /dev" | cut -d/ -f2,3 | cut -d: -f1` if [ "$devices" == "" ]; then warning "No harddisks found" fi @@ -458,8 +464,8 @@ if [ "$partitions" == "yes" ]; then label=${dev#/dev/} label=${label//\//-} outputfile=${partitionsfile//__star__/$label} - debug "$SFDISK $sfdisk_options -d $dev > $outputfile" - $SFDISK $sfdisk_options -d $dev > $outputfile + debug "$SFDISK $sfdisk_options -d /$dev > $outputfile" + $SFDISK $sfdisk_options -d /$dev > $outputfile done fi