From 505745567481c0dc1a085d58b889d399be07f1fb Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Mon, 4 Mar 2013 11:36:47 +0100 Subject: [PATCH] testing: ssh script forwards arguments to ssh command This allows to execute commands on a virtual host. --- testing/ssh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testing/ssh b/testing/ssh index fc72c265e..9e6d49a61 100755 --- a/testing/ssh +++ b/testing/ssh @@ -17,4 +17,5 @@ then exit 1 fi -exec ssh $SSHCONF -q root@$ip +shift +exec ssh $SSHCONF -q root@$ip $@