From cc2f375b13d2f26ffb0a403217947db8c500de4d Mon Sep 17 00:00:00 2001 From: Adam Warner Date: Sun, 7 Oct 2018 11:51:36 +0100 Subject: [PATCH] fix for #2450 Signed-off-by: Adam Warner --- 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 752a709b..337a4bfb 100755 --- a/automated install/basic-install.sh +++ b/automated install/basic-install.sh @@ -1259,7 +1259,7 @@ installConfigs() { version_check_dnsmasq # Install empty file if it does not exist if [[ ! -f "${PI_HOLE_CONFIG_DIR}/pihole-FTL.conf" ]]; then - if ! install -o pihole -g pihole -m 664 /dev/null "${PI_HOLE_CONFIG_DIR}/pihole-FTL.conf" &>/dev/nul; then + if ! install -o pihole -g pihole -m 664 /dev/null "${PI_HOLE_CONFIG_DIR}/pihole-FTL.conf" &>/dev/null; then echo -e " ${COL_LIGHT_RED}Error: Unable to initialize configuration file ${PI_HOLE_CONFIG_DIR}/pihole-FTL.conf" return 1 fi