From 807d926c971781815b6a60a0026e295dc0a5df07 Mon Sep 17 00:00:00 2001 From: Michael Hanselmann <hansmi@google.com> Date: Fri, 24 Aug 2007 11:38:31 +0000 Subject: [PATCH] Set SSH's ClearAllForwardings and ForwardAgent options. Reviewed-by: iustinp --- testing/ganeti.qa.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/testing/ganeti.qa.py b/testing/ganeti.qa.py index 4ce4d0d76..263846ebb 100755 --- a/testing/ganeti.qa.py +++ b/testing/ganeti.qa.py @@ -108,6 +108,8 @@ def GetSSHCommand(node, cmd, strict=True): else: tmp = 'no' args.append('-oStrictHostKeyChecking=%s' % tmp) + args.append('-oClearAllForwardings=yes') + args.append('-oForwardAgent=yes') args.append(node) if options.dry_run: -- GitLab