kube-up scripts: don't 'echo sleep'

'echo sleep 5' just prints 'sleep 5'; replace with 'sleep 5'.
This commit is contained in:
Justin Santa Barbara 2016-01-17 21:29:01 -05:00
parent ad827c6b62
commit d2e65a89d0
2 changed files with 4 additions and 4 deletions

View File

@ -47,7 +47,7 @@ install-salt() {
echo "== Refreshing package database =="
until apt-get update; do
echo "== apt-get update failed, retrying =="
echo sleep 5
sleep 5
done
mkdir -p /var/cache/salt-install
@ -79,7 +79,7 @@ install-salt() {
echo "== Installing unmet dependencies =="
until apt-get install -f -y; do
echo "== apt-get install failed, retrying =="
echo sleep 5
sleep 5
done
# Log a timestamp

View File

@ -136,7 +136,7 @@ install-salt() {
echo "== Refreshing package database =="
until apt-get update; do
echo "== apt-get update failed, retrying =="
echo sleep 5
sleep 5
done
mkdir -p /var/cache/salt-install
@ -178,7 +178,7 @@ EOF
echo "== Installing unmet dependencies =="
until apt-get install -f -y; do
echo "== apt-get install failed, retrying =="
echo sleep 5
sleep 5
done
rm /usr/sbin/policy-rc.d