From 5ad4ab5b60b5f4496d01b623dca44d862cfff868 Mon Sep 17 00:00:00 2001 From: DerLinkman Date: Fri, 15 Nov 2024 16:39:06 +0100 Subject: [PATCH] update.sh: fixed typos --- update.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/update.sh b/update.sh index cf94eb71c..3afe623c2 100755 --- a/update.sh +++ b/update.sh @@ -288,9 +288,9 @@ fix_broken_dnslist_conf() { # Check if the file contains the autogenerated comment if grep -q "# Autogenerated by mailcow" "$file"; then # Ask the user if custom changes were made - echo -e "\e[91mWARNING!!! \e[31mAn old version of dns_blocklists.cnf has been detected which may cause a broken postfix upon startup (see: https://github.com/mailcow/mailcow-dockerized/issues/6143)...\e[0m" + echo -e "\e[91mWARNING!!! \e[31mAn old version of dns_blocklists.cf has been detected which may cause a broken postfix upon startup (see: https://github.com/mailcow/mailcow-dockerized/issues/6143)...\e[0m" echo -e "\e[31mIf you have any custom settings in there you might copy it away and adapt the changes after the file is regenerated...\e[0m" - read -p "Do you want to delete the file now and let mailcow regenerate it properly? " response + read -p "Do you want to delete the file now and let mailcow regenerate it properly? [y/n]" response if [[ "${response}" =~ ^([yY][eE][sS]|[yY])+$ ]]; then rm "$file" echo -e "\e[32mdns_blocklists.cf has been deleted and will be properly regenerated"