aboutsummaryrefslogtreecommitdiff
path: root/handlers
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2006-08-08 21:40:08 +0000
committerMicah Anderson <micah@riseup.net>2006-08-08 21:40:08 +0000
commite6bf696c5abce63ef6fe59dbff115a6acd56ce77 (patch)
tree54e53304fd9d81272efd734ed1fbd8ba439ca47c /handlers
parent7814d463e4e1f55b8b34c019f49a384aeee00193 (diff)
downloadbackupninja-e6bf696c5abce63ef6fe59dbff115a6acd56ce77.tar.gz
backupninja-e6bf696c5abce63ef6fe59dbff115a6acd56ce77.tar.bz2
Changed partition check to use sfdisk as its more common
Diffstat (limited to 'handlers')
-rwxr-xr-xhandlers/sys6
1 files changed, 3 insertions, 3 deletions
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