diff options
| author | Elijah Saxon <elijah@riseup.net> | 2005-07-27 17:30:24 +0000 | 
|---|---|---|
| committer | Elijah Saxon <elijah@riseup.net> | 2005-07-27 17:30:24 +0000 | 
| commit | a37e9ccdb9453185765c59dafa808c47a098e75a (patch) | |
| tree | aaf886a8fd37d423a39ac5af77832d5076cc00ae | |
| parent | 5fcde095badc217991da05af7d9b4098f0440f4e (diff) | |
| download | backupninja-a37e9ccdb9453185765c59dafa808c47a098e75a.tar.gz backupninja-a37e9ccdb9453185765c59dafa808c47a098e75a.tar.bz2 | |
changed on to yes (on doesn't work!)
| -rw-r--r-- | handlers/sys.helper | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/handlers/sys.helper b/handlers/sys.helper index 93ae332..060e96c 100644 --- a/handlers/sys.helper +++ b/handlers/sys.helper @@ -8,14 +8,14 @@ sys_wizard() {         "hardware" "detailed hardware information" on     [ $? = 1 ] && return;         result="$REPLY" -   packages="packages = off" -   partitions="partitions = off" -   hardware="hardware = off" +   packages="packages = no" +   partitions="partitions = no" +   hardware="hardware = no"     for opt in $result; do        case $opt in -        '"packages"') packages="packages = on";; -        '"partitions"') partitions="partitions = on";; -        '"hardware"') hardware="hardware = on";; +        '"packages"') packages="packages = yes";; +        '"partitions"') partitions="partitions = yes";; +        '"hardware"') hardware="hardware = yes";;        esac     done     get_next_filename $configdirectory/10.sys | 
