From 617a1477069e6cc2b806d801450ebf8ac0744bc4 Mon Sep 17 00:00:00 2001 From: Promofaux Date: Mon, 31 Oct 2016 21:40:20 +0000 Subject: [PATCH] Wording adjustment --- automated install/basic-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automated install/basic-install.sh b/automated install/basic-install.sh index b3b34757..6d66fb89 100755 --- a/automated install/basic-install.sh +++ b/automated install/basic-install.sh @@ -538,13 +538,13 @@ setDNS() { } setLogging() { - LogToggleCommand=(whiptail --separate-output --radiolist "Select Logging mode:" ${r} ${c} 6) + LogToggleCommand=(whiptail --separate-output --radiolist "Do you want to log queries?\n (Disabling will render graphs on the Admin page useless):" ${r} ${c} 6) DNSChooseOptions=("On (Reccomended)" "" on Off "" off) DNSchoices=$("${DNSChooseCmd[@]}" "${DNSChooseOptions[@]}" 2>&1 >/dev/tty) if [[ $? = 0 ]];then case ${DNSchoices} in - "On (Reccomended)") + "On (Recommended)") echo "::: Logging On." queryLogging=true ;;