From 849cbfa2e4911bd27dee3ed7a1fcb41d6f340236 Mon Sep 17 00:00:00 2001 From: Christoph Date: Tue, 10 Feb 2026 23:58:58 +0100 Subject: [PATCH] install_postfixadmin.sh: some minor changes. --- install_postfixadmin.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/install_postfixadmin.sh b/install_postfixadmin.sh index 8c693d6..827ee21 100755 --- a/install_postfixadmin.sh +++ b/install_postfixadmin.sh @@ -938,6 +938,16 @@ done if $_failed ; then echo_failed error "$(cat $log_file)" + + echononl "\tcontinue 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 "Script terminated by user input.." + else echo_ok fi