Update 'installer.sh'

This commit is contained in:
bprieshof
2019-07-11 11:51:40 +02:00
parent 9b84646ec5
commit c99ab90c58

View File

@@ -94,9 +94,30 @@ fi
if [ $webserv = n ]; then if [ $webserv = n ]; then
while true; do
read -p "Brotli Precompression > yes/no?" yn
case $yn in
[Yy]* ) brotlinginx=1
break;;
[Nn]* ) brotlinginx=0
break;;
* ) echo "Kies yes of no.";;
esac
done
while true; do
read -p "Nextcloud Setup? > yes/no?" yn
case $yn in
[Yy]* ) nextcloud=1
break;;
[Nn]* ) nextcloud=0
break;;
* ) echo "Kies yes of no.";;
esac
done
else
brotlinginx=0
nextcloud=0
fi
while true; do while true; do
read -p "Password login uit zetten -> yes/no?" yn read -p "Password login uit zetten -> yes/no?" yn