Skip to content
Snippets Groups Projects
Commit 55aa0fe6 authored by Jérôme Charaoui's avatar Jérôme Charaoui
Browse files

Fix options dialog in mysql helper

Also align default options with handler example.
parent 3bd506ee
Branches
No related tags found
No related merge requests found
......@@ -56,15 +56,15 @@ do_mysql_user() {
do_mysql_final() {
if [ -z "$_DISABLE_HOTCOPY" ]; then
checkBox "$mysql_title" "check options" \
"sqldump" "create a backup using mysqldump (more compat)." no \
"hotcopy" "create a backup using mysqlhotcopy (faster)." yes \
"compress" "compress the sql output files" yes
"sqldump" "create a backup using mysqldump (more compat)." on \
"hotcopy" "create a backup using mysqlhotcopy (faster)." off \
"compress" "compress the sql output files" on
status=$?
sqldump="sqldump = no"
hotcopy="hotcopy = no"
else
checkBox "$mysql_title" "check options" \
"compress" "compress the sql output files" yes
"compress" "compress the sql output files" on
status=$?
sqldump="sqldump = yes"
hotcopy="hotcopy = no"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment