Added RPM patches submitted by Robert Napier
[matthijs/upstream/backupninja.git] / handlers / sys
index a83baaafbcaaf1170c5c71fd20794a2efa890e9f..a8c8771ff59e536f4c8ce0fbfab8eccda870713c 100755 (executable)
@@ -449,14 +449,17 @@ 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
        for dev in $devices; do
                [ -b $dev ] || continue
                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