diff --git a/handlers/mysql.helper.in b/handlers/mysql.helper.in index 997f73c0a8ebe4bf40c0e02f5de6e6859a818901..6501d60028529e4cbaba6b970e24d16802b0f361 100644 --- a/handlers/mysql.helper.in +++ b/handlers/mysql.helper.in @@ -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)." off \ + "hotcopy" "create a backup using mysqlhotcopy (faster)." on \ + "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"