commit | 8a686e269c5f422b5f59476c9951009f23a5f39a | [log] [tgz] |
---|---|---|
author | Andy Bavier <acb@cs.princeton.edu> | Wed May 04 16:28:58 2016 -0700 |
committer | Andy Bavier <acb@cs.princeton.edu> | Wed May 04 16:28:58 2016 -0700 |
tree | 4a2489823e98e8ffe885cb6c25db5da7d12755bb | |
parent | 5ae65bbca885f0bb10a071c801c6b8feea33a6dc [diff] |
http -> curl
diff --git a/xos/configurations/common/wait_for_xos_port.sh b/xos/configurations/common/wait_for_xos_port.sh index dab6e70..3ed5833 100755 --- a/xos/configurations/common/wait_for_xos_port.sh +++ b/xos/configurations/common/wait_for_xos_port.sh
@@ -11,7 +11,7 @@ fi echo "Waiting for XOS to come up" -until http 0.0.0.0:$1 &> /dev/null +until curl 0.0.0.0:$1 &> /dev/null do sleep 1 RUNNING_CONTAINER=`sudo docker ps|grep "xos"|awk '{print $$NF}'`