Formatting cleanups, doc updates and whatnot
Change-Id: Ica8298353be22f947c8e8a03d8dc29ded9cb26dd
diff --git a/lib/quantum b/lib/quantum
index e2a0d53..34d51f8 100644
--- a/lib/quantum
+++ b/lib/quantum
@@ -53,7 +53,6 @@
#
# With Quantum networking the NETWORK_MANAGER variable is ignored.
-
# Save trace setting
XTRACE=$(set +o | grep xtrace)
set +o xtrace
@@ -172,6 +171,7 @@
OVS_ENABLE_TUNNELING=${OVS_ENABLE_TUNNELING:-$ENABLE_TENANT_TUNNELS}
fi
+
# Quantum plugin specific functions
# ---------------------------------
# Please refer to lib/quantum_plugins/README.md for details.
@@ -189,8 +189,9 @@
Q_USE_SECGROUP=False
fi
-# Entry Points
-# ------------
+
+# Functions
+# ---------
# configure_quantum()
# Set common config for all quantum server and agents.
@@ -730,7 +731,7 @@
local timeout_sec=$5
local probe_cmd = ""
probe_cmd=`_get_probe_cmd_prefix $from_net`
- if ! timeout $timeout_sec sh -c "while ! $probe_cmd ssh -o StrictHostKeyChecking=no -i $key_file ${user}@$ip echo success ; do sleep 1; done"; then
+ if ! timeout $timeout_sec sh -c "while ! $probe_cmd ssh -o StrictHostKeyChecking=no -i $key_file ${user}@$ip echo success; do sleep 1; done"; then
die $LINENO "server didn't become ssh-able!"
fi
}