added purged packages to dpkg --get-selections
[matthijs/upstream/backupninja.git] / handlers / sys
index d0e2057d50bc15fdb48368c718f2a67882fb6939..3c04365722c6d8d20901391b6f6642571bf7f840 100755 (executable)
@@ -37,7 +37,7 @@ 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 
@@ -449,7 +449,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 +458,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