From 92369cd9cc241ea955aaf6abbe6422a5e82c4d90 Mon Sep 17 00:00:00 2001 From: Quentin Smith Date: Mon, 2 Mar 2009 21:17:51 -0500 Subject: [PATCH] Explicitly request GSSAPI delegation so zephyr subscribing works --- barn-growl/barn-growl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/barn-growl/barn-growl.py b/barn-growl/barn-growl.py index 5a2bf4a..2033f22 100755 --- a/barn-growl/barn-growl.py +++ b/barn-growl/barn-growl.py @@ -107,7 +107,7 @@ def main(argv): return 1 if ssh is not None: - command = "ssh -K %s 'tzc -si'" % ssh + command = "ssh -o GSSAPIAuthentication=yes -o GSSAPIDelegateCredentials=yes -o GSSAPIKeyExchange=yes %s 'tzc -si'" % ssh else: command = "tzc -si" p = os.popen(command) -- 2.44.0