From dcaa6afadfed17844e57c41a01f95b9cea669a00 Mon Sep 17 00:00:00 2001 From: AlteredCoder <64792091+AlteredCoder@users.noreply.github.com> Date: Wed, 7 Oct 2020 12:03:06 +0200 Subject: [PATCH] add warning in wzard (#297) Co-authored-by: AlteredCoder --- wizard.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wizard.sh b/wizard.sh index 7a858b788..f2757274a 100755 --- a/wizard.sh +++ b/wizard.sh @@ -233,7 +233,10 @@ install_collection() { ${CSCLI_BIN_INSTALLED} install parser "crowdsecurity/whitelists" > /dev/null 2>&1 || log_err "fail to install collection crowdsec/whitelists" if [[ ${SILENT} == "false" ]]; then whiptail --msgbox "Out of safety, I installed a parser called 'crowdsecurity/whitelists'. This one will prevent private IP adresses from being banned, feel free to remove it any time." 20 50 + whiptail --msgbox "CrowdSec alone will not block any IP address. If you want to block them, you must use a blocker. You can find them on https://hub.crowdsec.net/" 20 50 fi + + }