From: Elijah Saxon Date: Fri, 8 Jul 2005 19:28:16 +0000 (+0000) Subject: added cancel X-Git-Tag: backupninja-0.7~11 X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fbackupninja.git;a=commitdiff_plain;h=7a145f8dd6934ddd05e4acceaf72a4c1ab43a259 added cancel --- diff --git a/handlers/mysql.helper b/handlers/mysql.helper index 759ee26..fc65359 100644 --- a/handlers/mysql.helper +++ b/handlers/mysql.helper @@ -2,13 +2,16 @@ HELPERS="$HELPERS mysql:mysql_database_backup" do_mysql_user() { inputBox "mysql action wizard" "specify a system user:" + [ $? = 1 ] && return do_mysql_final "user = $REPLY" } do_mysql_password() { inputBox "mysql action wizard" "specify a mysql user:" + [ $? = 1 ] && return user=$REPLY inputBox "mysql action wizard" "specify the mysql user's password:" + [ $? = 1 ] && return password=$REPLY do_mysql_final "dbusername = $user\ndbpassword = $password" } @@ -20,6 +23,7 @@ do_mysql_debian() { do_mysql_user() { inputBox "mysql action wizard" "what system user does mysql backup use?" + [ $? = 1 ] && return do_mysql_final "user = $REPLY" }