X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fbackupninja.git;a=blobdiff_plain;f=handlers%2Fsys;h=a8c8771ff59e536f4c8ce0fbfab8eccda870713c;hp=d0e2057d50bc15fdb48368c718f2a67882fb6939;hb=e6bf696c5abce63ef6fe59dbff115a6acd56ce77;hpb=7814d463e4e1f55b8b34c019f49a384aeee00193 diff --git a/handlers/sys b/handlers/sys index d0e2057..a8c8771 100755 --- a/handlers/sys +++ b/handlers/sys @@ -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