Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/pi-hole/pi-hole.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Salmela <jacobsalmela@users.noreply.github.com>2016-10-18 06:41:02 +0300
committerGitHub <noreply@github.com>2016-10-18 06:41:02 +0300
commitfc89851ce95b4ea059ed430e1ad514bdbb3605dd (patch)
tree53df067624c01fb500654fdab1502fa85d8a1888
parentdce24df37922171cef1dd3c3a025c09cb4a6a818 (diff)
parentc4c6555814ecc0a9ae3aaf722dd5670f482312b9 (diff)
Merge pull request #805 from pi-hole/developmentv2.9.4
Hotfix for installer bug, MASTER
-rwxr-xr-xautomated install/basic-install.sh2
-rwxr-xr-xgravity.sh2
2 files changed, 2 insertions, 2 deletions
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."
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