update the ping to ping, wait 5 second, really ping
diff --git a/exercise.sh b/exercise.sh
index 84679f2..dc8163f 100755
--- a/exercise.sh
+++ b/exercise.sh
@@ -106,7 +106,13 @@
IP=`nova show $NAME | grep "private network" | cut -d"|" -f3`
# ping it once (timeout of a second)
-ping -c1 -w1 $IP
+ping -c1 -w1 $IP || true
+
+# sometimes the first ping fails (10 seconds isn't enough time for the VM's
+# network to respond?), so let's wait 5 seconds and really test ping
+sleep 5
+
+ping -c1 -w1 $IP
# shutdown the server
nova delete $NAME