From 78c0c58946adc95fcbdfcb71c3cad4701e936d4c Mon Sep 17 00:00:00 2001 From: Mcat12 Date: Sun, 7 Apr 2019 12:00:43 -0700 Subject: [PATCH 1/2] Add a link to the documentation on FTL privacy levels during install Closes #2695 Signed-off-by: Mcat12 --- automated install/basic-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated install/basic-install.sh b/automated install/basic-install.sh index 2333a65f..94377647 100755 --- a/automated install/basic-install.sh +++ b/automated install/basic-install.sh @@ -1094,7 +1094,7 @@ setPrivacyLevel() { local LevelCommand local LevelOptions - LevelCommand=(whiptail --separate-output --radiolist "Select a privacy mode for FTL." "${r}" "${c}" 6) + LevelCommand=(whiptail --separate-output --radiolist "Select a privacy mode for FTL. https://docs.pi-hole.net/ftldns/privacylevels/" "${r}" "${c}" 6) # The default selection is level 0 LevelOptions=( From 84244b7cd53c7373c592ae2891c897bb869e5d95 Mon Sep 17 00:00:00 2001 From: DL6ER Date: Tue, 16 Apr 2019 18:30:04 +0200 Subject: [PATCH 2/2] Fix indentation in display of branches available during pihole checkout Signed-off-by: DL6ER --- advanced/Scripts/piholeCheckout.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/advanced/Scripts/piholeCheckout.sh b/advanced/Scripts/piholeCheckout.sh index 1bfe5e21..c4b07a98 100644 --- a/advanced/Scripts/piholeCheckout.sh +++ b/advanced/Scripts/piholeCheckout.sh @@ -115,7 +115,7 @@ checkout() { if [[ "${corebranches[*]}" == *"master"* ]]; then echo -e "${OVER} ${TICK} $str" - echo -e "${INFO} ${#corebranches[@]} branches available for Pi-hole Core" + echo -e " ${INFO} ${#corebranches[@]} branches available for Pi-hole Core" else # Print STDERR output from get_available_branches echo -e "${OVER} ${CROSS} $str\\n\\n${corebranches[*]}" @@ -142,7 +142,7 @@ checkout() { if [[ "${webbranches[*]}" == *"master"* ]]; then echo -e "${OVER} ${TICK} $str" - echo -e "${INFO} ${#webbranches[@]} branches available for Web Admin" + echo -e " ${INFO} ${#webbranches[@]} branches available for Web Admin" else # Print STDERR output from get_available_branches echo -e "${OVER} ${CROSS} $str\\n\\n${webbranches[*]}"