commit | 56a505fc2d3b95c310f2330b4e4d45d8dfe8f0e1 | [log] [tgz] |
---|---|---|
author | Justin Shepherd <galstrom21@gmail.com> | Wed Oct 26 10:45:02 2011 -0500 |
committer | Justin Shepherd <galstrom21@gmail.com> | Wed Oct 26 10:45:02 2011 -0500 |
tree | 4e9f7808db7d6dad8d4b9a3832359c2572f40596 | |
parent | c99d4ad156e4a723d69877cae452e6f7c56339fc [diff] [blame] |
bug fix.. resulted in following error message: ./exercise.sh: line 96: [: missing `]'
diff --git a/exercise.sh b/exercise.sh index b73d6aa..3f2c94e 100755 --- a/exercise.sh +++ b/exercise.sh
@@ -93,7 +93,7 @@ # for single node deployments, we can ping private ips MULTI_HOST=${MULTI_HOST:-0} -if [ "$MULTI_HOST" = "0"]; then +if [ "$MULTI_HOST" = "0" ]; then # ping it once (timeout of a second) ping -c1 -w1 $IP || true