fix ssh tunnel creation 65/18965/1
authorRyota MIBU <r-mibu@cq.jp.nec.com>
Thu, 18 Aug 2016 13:18:49 +0000 (22:18 +0900)
committerRyota MIBU <r-mibu@cq.jp.nec.com>
Thu, 18 Aug 2016 13:18:49 +0000 (22:18 +0900)
this patch removes unnecessary single quotes

JIRA: DOCTOR-63

Change-Id: Ie24cb4c3c8fcae43371e58068cf03ee74ce9962e
Signed-off-by: Ryota MIBU <r-mibu@cq.jp.nec.com>
tests/run.sh

index 731d2ac..4189700 100755 (executable)
@@ -210,7 +210,7 @@ start_consumer() {
     # NOTE(r-mibu): create tunnel to the installer node, so that we can
     # avoid some network problems dpends on infra and installers.
     # This tunnel will be terminated by stop_consumer() or after 10 mins passed.
-    TUNNEL_COMMAND="sudo ssh $ssh_opts $INSTALLER_IP -R $CONSUMER_PORT:localhost:$CONSUMER_PORT 'sleep 600'"
+    TUNNEL_COMMAND="sudo ssh $ssh_opts $INSTALLER_IP -R $CONSUMER_PORT:localhost:$CONSUMER_PORT sleep 600"
     $TUNNEL_COMMAND > ssh_tunnel.log 2>&1 < /dev/null &
 }