summaryrefslogtreecommitdiff
path: root/tutorial
diff options
context:
space:
mode:
authorBen Pfaff <blp@ovn.org>2017-10-30 09:44:52 -0700
committerBen Pfaff <blp@ovn.org>2017-10-30 09:44:52 -0700
commit45a9c31d5d915010deb6d8073fe22cf8c10f12de (patch)
tree096a21d67ba6defd5d2ab045746792e483a2e8f2 /tutorial
parenta05df205cdeb09ae644968f610365223f9b991ba (diff)
downloadopenvswitch-45a9c31d5d915010deb6d8073fe22cf8c10f12de.tar.gz
treewide: Get rid of "echo -n", and add a test to prevent regression.
"echo -n" is not POSIX and has spotty support in shells. CC: Timothy Redaelli <tredaelli@redhat.com> CC: Flavio Leitner <fbl@sysclose.org> Signed-off-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'tutorial')
-rwxr-xr-xtutorial/ovs-sandbox2
1 files changed, 1 insertions, 1 deletions
diff --git a/tutorial/ovs-sandbox b/tutorial/ovs-sandbox
index 7ae8cdb8a..1632ad15d 100755
--- a/tutorial/ovs-sandbox
+++ b/tutorial/ovs-sandbox
@@ -385,7 +385,7 @@ sleep 0.1
#Wait for ovsdb-server to finish launching.
if test ! -e "$sandbox"/db.sock; then
- echo -n "Waiting for ovsdb-server to start..."
+ printf "Waiting for ovsdb-server to start..."
while test ! -e "$sandbox"/db.sock; do
sleep 1;
done