Merge pull request #9432 from blueyed/curl-s
salt: bootstrap-salt.sh: use -s with curl
This commit is contained in:
commit
4fd9d522f6
|
@ -6,7 +6,7 @@ cd `mktemp -d`
|
|||
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 --silent --show-error -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