Browse code

check that you can't hit the floating ip as well

Jesse Andrews authored on 2011/10/28 06:10:47
Showing 1 changed files
... ...
@@ -137,6 +137,11 @@ if ( ping -c1 -w1 $IP); then
137 137
     exit 1
138 138
 fi
139 139
 
140
+if ( ping -c1 -w1 $FLOATING_IP); then
141
+    echo "Pause failure - ping floating ips shouldn't work"
142
+    exit 1
143
+fi
144
+
140 145
 # unpause the VM and verify we can ping it again
141 146
 nova unpause $NAME
142 147