Remove watch_deploy, and add wait_for_nova and wait_for_puppet which have superceded it. Change-Id: Icb771b85ea727b77cd9195be2fcec1c828e90444
13 lines
205 B
Bash
Executable File
13 lines
205 B
Bash
Executable File
#!/bin/bash
|
|
|
|
URL=$1
|
|
|
|
echo "Jenkins: Waiting for Nova to start on infrastructure node"
|
|
RET=7
|
|
while [ $RET != 0 ]; do
|
|
curl -s $URL >/dev/null
|
|
RET=$?
|
|
sleep 1
|
|
done
|
|
echo "Jenkins: Nova is running."
|