Files
devstack-gate/slave_scripts/wait_for_nova.sh
James E. Blair a579ac5d45 Add bare-metal helper scripts.
Remove watch_deploy, and add wait_for_nova and wait_for_puppet
which have superceded it.

Change-Id: Icb771b85ea727b77cd9195be2fcec1c828e90444
2011-09-07 13:00:57 -07:00

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."