salt: bootstrap-salt.sh: use -s with curl
This makes it silent (no progress information), which would otherwise result in output like the following (when the output from the bootstrap script is displayed in verbose mode): % Total % Recei ved % Xferd Avera ge Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 244k 100 244k 0 0 458k 0 --:--:-- --:--:-- --:--:-- 458k * INFO: Running version: 2017.12.13 …
This commit is contained in:
parent
ff3b025fc2
commit
6f7c383fe8
|
@ -4,7 +4,7 @@
|
|||
if [ -x /usr/bin/fetch ]; then
|
||||
/usr/bin/fetch -o bootstrap-salt.sh https://raw.githubusercontent.com/saltstack/salt-bootstrap/stable/bootstrap-salt.sh
|
||||
elif [ -x /usr/bin/curl ]; then
|
||||
/usr/bin/curl -L -O https://raw.githubusercontent.com/saltstack/salt-bootstrap/stable/bootstrap-salt.sh
|
||||
/usr/bin/curl -s -L -O https://raw.githubusercontent.com/saltstack/salt-bootstrap/stable/bootstrap-salt.sh
|
||||
elif [ -x /usr/bin/wget ]; then
|
||||
/usr/bin/wget -O bootstrap-salt.sh https://raw.githubusercontent.com/saltstack/salt-bootstrap/stable/bootstrap-salt.sh
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue