From 44f1133c8b0087acce42c3cfaf47d011a513423d Mon Sep 17 00:00:00 2001 From: Ryota MIBU Date: Thu, 18 Aug 2016 22:18:49 +0900 Subject: fix ssh tunnel creation this patch removes unnecessary single quotes JIRA: DOCTOR-63 Change-Id: Ie24cb4c3c8fcae43371e58068cf03ee74ce9962e Signed-off-by: Ryota MIBU --- tests/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 & } -- cgit 1.2.3-korg