install_mysql.sh: minor changes.
This commit is contained in:
parent
ccb69889e7
commit
57b3a382ce
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user