From 49f48e2aaa5ea4082b56535140949fbd055c31cb Mon Sep 17 00:00:00 2001 From: Promofaux Date: Mon, 17 Oct 2016 22:24:59 +0100 Subject: [PATCH 1/2] wrong word. #admincrimes --- gravity.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gravity.sh b/gravity.sh index 46be515c..3d9c05c4 100755 --- a/gravity.sh +++ b/gravity.sh @@ -37,7 +37,7 @@ if [[ -f ${setupVars} ]];then . /etc/pihole/setupVars.conf else echo "::: WARNING: /etc/pihole/setupVars.conf missing. Possible installation failure." - echo "::: Please run 'pihole -r', and choose the 'install' option to reconfigure." + echo "::: Please run 'pihole -r', and choose the 'reconfigure' option to reconfigure." exit 1 fi From ef3c13fe2b08396f23f9563dcf872ed338a19ea7 Mon Sep 17 00:00:00 2001 From: Dan Schaper Date: Mon, 17 Oct 2016 19:22:56 -0700 Subject: [PATCH 2/2] Refire with curl --- 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 1fb1a49f..7c26019e 100755 --- a/automated install/basic-install.sh +++ b/automated install/basic-install.sh @@ -58,7 +58,7 @@ else echo "::: Detecting the presence of the sudo utility for continuation of this install..." if [ -x "$(command -v sudo)" ];then echo "::: Utility sudo located." - exec sudo bash "$0" "$@" + exec curl -sSL https://install.pi-hole.net | sudo bash "$@" exit $? else echo "::: sudo is needed for the Web interface to run pihole commands. Please run this script as root and it will be automatically installed."