1
0
mirror of https://git.koehlerweb.org/frodovdr/guac-install synced 2025-07-06 17:03:32 +02:00

silent install and cosmetic change (#15)

* add -qq for silent install

* add -qq for silent install

* newline after passwort question

* add newline after password question

also add  -qq -y on apt install

* Update guac-install.sh
This commit is contained in:
MysticEmpires
2017-08-03 13:31:57 +02:00
committed by Chase Wright
parent 948c43c9c3
commit 2161ea5ab6
3 changed files with 7 additions and 3 deletions

View File

@ -4,11 +4,13 @@
VERSION="0.9.13"
read -s -p "Enter the password that will be used for MySQL Root: " MYSQLROOTPASSWORD
echo
read -s -p "Enter the password that will be used for the Guacamole database: " GUACDBUSERPASSWORD
echo
#Install Stuff
apt-get update
apt-get install docker.io mysql-client wget jq curl
apt-get -qq -y install docker.io mysql-client wget jq curl
# Get perfered download server
SERVER=$(curl -s 'https://www.apache.org/dyn/closer.cgi?as_json=1' | jq --raw-output '.preferred|rtrimstr("/")')