mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-24 15:13:42 +00:00
Curl does not wait for user input. Force user to quit installation if there are packages that need to be upgraded.
This commit is contained in:
parent
ea7592a8cc
commit
cc0997f110
1 changed files with 9 additions and 7 deletions
|
@ -331,17 +331,19 @@ checkForDependencies(){
|
||||||
echo "::: Your pi is up to date! Continuing with pi-hole installation..."
|
echo "::: Your pi is up to date! Continuing with pi-hole installation..."
|
||||||
else
|
else
|
||||||
echo "::: There are $updatesToInstall updates availible for your pi!"
|
echo "::: There are $updatesToInstall updates availible for your pi!"
|
||||||
echo "::: Please consider running 'sudo apt-get upgrade' before continuing with installation"
|
echo "::: Please run 'sudo apt-get upgrade' before continuing with installation"
|
||||||
echo ":::"
|
echo ":::"
|
||||||
|
echo "::: Quitting install, please run 'curl -L install.pi-hole.net | bash' after updating packages!"
|
||||||
|
exit
|
||||||
#add in a prompt to give users the option to quit installation or continue
|
#add in a prompt to give users the option to quit installation or continue
|
||||||
#echo -n "::: Would you like to continue with the pi-hole installation? (Y/n):"
|
#echo -n "::: Would you like to continue with the pi-hole installation? (Y/n):"
|
||||||
read -p "::: Would you like to continue with the pi-hole installation? (Y/n):" answer
|
#read answer
|
||||||
|
|
||||||
case "$answer" in
|
#case "$answer" in
|
||||||
[yY][eE][sS]|[yY] ) echo "::: Continuing!";;
|
# [yY][eE][sS]|[yY] ) echo "::: Continuing!";;
|
||||||
* ) echo "::: Quitting install, please run 'curl -L install.pi-hole.net | bash' after updating packages!"
|
# * ) echo "::: Quitting install, please run 'curl -L install.pi-hole.net | bash' after updating packages!"
|
||||||
exit 0;;
|
|
||||||
esac
|
#esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo ":::"
|
echo ":::"
|
||||||
|
|
Loading…
Reference in a new issue