X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=handlers%2Fmysql.helper;h=fc65359c0e0a53465cb976212d37ba5c01504d47;hb=6af4bda04f032ca98be639eb1c8707535259622e;hp=765f22889350b88e133605aefa1125e1ce7ad37d;hpb=4c8e2839949be4603fbb8fb9e7a7e536e59c1dc4;p=matthijs%2Fupstream%2Fbackupninja.git diff --git a/handlers/mysql.helper b/handlers/mysql.helper index 765f228..fc65359 100644 --- a/handlers/mysql.helper +++ b/handlers/mysql.helper @@ -1,13 +1,17 @@ +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" } @@ -19,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" }