diff options
author | intrigeri <intrigeri@boum.org> | 2005-09-03 18:57:37 +0000 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2005-09-03 18:57:37 +0000 |
commit | 30348c7db8a43db5b298501c317211f5517f4661 (patch) | |
tree | 1f51e56802a6890db40d3c9f6d02698b4037c993 /handlers/mysql.helper | |
parent | cf1817d075b934aeab77d7bf10da3bf886b034ae (diff) | |
download | backupninja-30348c7db8a43db5b298501c317211f5517f4661.tar.gz backupninja-30348c7db8a43db5b298501c317211f5517f4661.tar.bz2 |
mysql helper bugfix: write yes/no to config file instead of on/off, that are not recognized by mysql handler
Diffstat (limited to 'handlers/mysql.helper')
-rw-r--r-- | handlers/mysql.helper | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/handlers/mysql.helper b/handlers/mysql.helper index fc65359..554464b 100644 --- a/handlers/mysql.helper +++ b/handlers/mysql.helper @@ -30,28 +30,28 @@ do_mysql_user() { do_mysql_final() { if [ -z "$_DISABLE_HOTCOPY" ]; then checkBox "mysql action wizard" "check options" \ - "sqldump" "create a backup using mysqldump (more compat)." off \ - "hotcopy" "create a backup using mysqlhotcopy (faster)." on \ - "compress" "compress the sql output files" on + "sqldump" "create a backup using mysqldump (more compat)." no \ + "hotcopy" "create a backup using mysqlhotcopy (faster)." yes \ + "compress" "compress the sql output files" yes status=$? - sqldump="sqldump = off" - hotcopy="hotcopy = off" + sqldump="sqldump = no" + hotcopy="hotcopy = no" else checkBox "mysql action wizard" "check options" \ - "compress" "compress the sql output files" on + "compress" "compress the sql output files" yes status=$? - sqldump="sqldump = on" - hotcopy="hotcopy = off" + sqldump="sqldump = yes" + hotcopy="hotcopy = no" fi [ $status = 1 ] && return; result="$REPLY" - compress="compress = off" + compress="compress = no" for opt in $result; do case $opt in - '"sqldump"') sqldump="sqldump = on";; - '"hotcopy"') hotcopy="hotcopy = on";; - '"compress"') compress="compress = on";; + '"sqldump"') sqldump="sqldump = yes";; + '"hotcopy"') hotcopy="hotcopy = yes";; + '"compress"') compress="compress = yes";; esac done get_next_filename $configdirectory/20.mysql |