diff options
author | Micah Anderson <micah@riseup.net> | 2007-03-04 10:29:26 +0000 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2007-03-04 10:29:26 +0000 |
commit | c0126ff1ef90513ce5df48fc41326704a2cef555 (patch) | |
tree | b3dc121268c91ac4d6c688b73e4deefafba22fe5 /handlers/sys.helper | |
parent | 05c26446ed65681528387f6c66473c61eebe7224 (diff) | |
download | backupninja-c0126ff1ef90513ce5df48fc41326704a2cef555.tar.gz backupninja-c0126ff1ef90513ce5df48fc41326704a2cef555.tar.bz2 |
added ninjareport
added ale to AUTHORS for ldap fixes
adjusted sys handler to allow for turning off of sfdisk (#404071)
Diffstat (limited to 'handlers/sys.helper')
-rw-r--r-- | handlers/sys.helper | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/handlers/sys.helper b/handlers/sys.helper index b6e3b8c..6451ae2 100644 --- a/handlers/sys.helper +++ b/handlers/sys.helper @@ -7,16 +7,19 @@ sys_wizard() { checkBox "new sys action" "check options" \ "packages" "list of all installed packages." on \ "partitions" "the partition table of all disks." on \ + "sfdisk" "use sfdisk to get partition information." on \ "hardware" "detailed hardware information" on [ $? = 1 ] && return; result="$REPLY" packages="packages = no" partitions="partitions = no" + sfdisk="dosfdisk = no" hardware="hardware = no" for opt in $result; do case $opt in '"packages"') packages="packages = yes";; '"partitions"') partitions="partitions = yes";; + '"sfdisk"') sfdisk="dosfdisk = yes";; '"hardware"') hardware="hardware = yes";; esac done @@ -24,6 +27,7 @@ sys_wizard() { cat > $next_filename <<EOF $packages $partitions +$sfdisk $hardware # packagesfile = /var/backups/dpkg-selections.txt # partitionsfile = /var/backups/partitions.__star__.txt |