[Swift-commit] r5417 - branches/release-0.93/bin
davidk at ci.uchicago.edu
davidk at ci.uchicago.edu
Wed Dec 14 15:51:12 CST 2011
Author: davidk
Date: 2011-12-14 15:51:11 -0600 (Wed, 14 Dec 2011)
New Revision: 5417
Modified:
branches/release-0.93/bin/start-coaster-service
Log:
Use full paths to utils
Modified: branches/release-0.93/bin/start-coaster-service
===================================================================
--- branches/release-0.93/bin/start-coaster-service 2011-12-14 21:48:18 UTC (rev 5416)
+++ branches/release-0.93/bin/start-coaster-service 2011-12-14 21:51:11 UTC (rev 5417)
@@ -126,7 +126,7 @@
while /bin/true
do
SWIFTVM_INSTANCES_AS_STRING=$( echo $SWIFTVM_INSTANCES | tr "\\n" " ")
- STATUS_LIST=$( ec2-describe-instances $SWIFTVM_INSTANCES_AS_STRING | grep INSTANCE | grep -v terminated | awk '{print $6}' |sort -u )
+ STATUS_LIST=$( $SWIFTVMBOOT_DIR/ec2-describe-instances $SWIFTVM_INSTANCES_AS_STRING | grep INSTANCE | grep -v terminated | awk '{print $6}' |sort -u )
if [ "$STATUS_LIST" == "running" ]; then
break
fi
@@ -136,7 +136,7 @@
# There is some delay between when the machines are 'running', and when system utilities like sshd are started
sleep 30
- WORKER_HOSTS=$( ec2-describe-instances $SWIFTVM_INSTANCES_AS_STRING | grep INSTANCE | grep -v terminated | awk '{print $4}' )
+ WORKER_HOSTS=$( $SWIFTVMBOOT_DIR/ec2-describe-instances $SWIFTVM_INSTANCES_AS_STRING | grep INSTANCE | grep -v terminated | awk '{print $4}' )
if [ -f "$HOME/.swift/.machines" ]; then
rm $HOME/.swift/.machines
More information about the Swift-commit
mailing list