blob: 3ed583393469afd5f1d430290b45bfd33d906ec6 [file] [log] [blame]
#! /bin/bash
display_usage() {
echo -e "\nUsage:\n$0 [xos-listen-port] \n"
}
if [ $# -lt 1 ]
then
display_usage
exit 1
fi
echo "Waiting for XOS to come up"
until curl 0.0.0.0:$1 &> /dev/null
do
sleep 1
RUNNING_CONTAINER=`sudo docker ps|grep "xos"|awk '{print $$NF}'`
if [[ $RUNNING_CONTAINER == "" ]]; then
echo Container may have failed. check with \"make showlogs\'
exit 1
fi
done
echo "XOS is ready"