diff --git a/install_mysql.sh b/install_mysql.sh index 302c924..bc392b7 100755 --- a/install_mysql.sh +++ b/install_mysql.sh @@ -1080,7 +1080,16 @@ if ! $PARALLEL_INSTALLATION ; then fi if [[ -z "$MYSQL_INIT_SCRIPT" ]] && [[ -z "$MYSQLD_SERVICE_FILE" ]] && $UPDATE_MYSQL ; then - fatal "Kein start/stop Sevice File/ Init Script gefunden.." + error "Kein start/stop Sevice File/ Init Script gefunden.." + + echononl "continue anyway [yes/no]: " + read OK + OK="$(echo "$OK" | tr '[:upper:]' '[:lower:]')" + while [[ "$OK" != "yes" ]] && [[ "$OK" != "no" ]] ; do + echononl "Wrong entry! - repeat [yes/nno]: " + read OK + done + [[ $OK = "yes" ]] || fatal "Abbruch durch User" fi fi # if ! $PARALLEL_INSTALLATION ; then