Skip to content
Snippets Groups Projects
Commit 7a145f8d authored by elijah's avatar elijah
Browse files

added cancel

parent 67b5cf70
No related branches found
No related tags found
No related merge requests found
......@@ -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"
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment