Browse code

Fix spacing issue in ssh_check()

Change-Id: Ia5bd7b678b86f2e3e3b1fa04e628096feb1ace81

Dean Troyer authored on 2012/11/08 07:51:21
Showing 1 changed files
... ...
@@ -894,7 +894,7 @@ function ssh_check() {
894 894
     local FLOATING_IP=$3
895 895
     local DEFAULT_INSTANCE_USER=$4
896 896
     local ACTIVE_TIMEOUT=$5
897
-    local probe_cmd = ""
897
+    local probe_cmd=""
898 898
     if ! timeout $ACTIVE_TIMEOUT sh -c "while ! ssh -o StrictHostKeyChecking=no -i $KEY_FILE ${DEFAULT_INSTANCE_USER}@$FLOATING_IP echo success ; do sleep 1; done"; then
899 899
         echo "server didn't become ssh-able!"
900 900
         exit 1