summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyota MIBU <r-mibu@cq.jp.nec.com>2016-08-18 22:18:49 +0900
committerRyota MIBU <r-mibu@cq.jp.nec.com>2016-08-18 22:18:49 +0900
commit44f1133c8b0087acce42c3cfaf47d011a513423d (patch)
tree7c8676f12d7369c92955f2cf3da91c331d11ae89
parenta6795a5dec13bccd3113975a206a5e1c44fc3efc (diff)
fix ssh tunnel creation
this patch removes unnecessary single quotes JIRA: DOCTOR-63 Change-Id: Ie24cb4c3c8fcae43371e58068cf03ee74ce9962e Signed-off-by: Ryota MIBU <r-mibu@cq.jp.nec.com>
-rwxr-xr-xtests/run.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run.sh b/tests/run.sh
index 731d2ac6..41897003 100755
--- a/tests/run.sh
+++ b/tests/run.sh
@@ -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 &
}