Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

PATCH: _ssh "modern" options



This adds some missing options; the lack of GSSAPIAuthentication was
getting on my nerves.

Index: Completion/Unix/Command/_ssh
===================================================================
RCS file: /cvsroot/zsh/zsh/Completion/Unix/Command/_ssh,v
retrieving revision 1.22
diff -u -r1.22 _ssh
--- Completion/Unix/Command/_ssh	21 Mar 2004 01:54:49 -0000	1.22
+++ Completion/Unix/Command/_ssh	27 Nov 2004 06:37:45 -0000
@@ -213,22 +213,29 @@
       else
         _wanted values expl 'configure file option' \
             compadd -M 'm:{a-z}={A-Z}' -S '=' - \
-                AFSTokenPassing BatchMode BindAddress CheckHostIP \
+	    	AddressFamily \
+                AFSTokenPassing BatchMode BindAddress \
+		ChallengeResponseAuthentication CheckHostIP \
 		Cipher Ciphers ClearAllForwardings Compression \
-                CompressionLevel ConnectionAttempts DynamicForward \
+                CompressionLevel ConnectionAttempts ConnectTimeout \
+		DynamicForward EnableSSHKeysign \
 		EscapeChar FallBackToRsh ForwardAgent ForwardX11 \
-                GatewayPorts GlobalKnownHostsFile HostbasedAuthentication \
+		ForwardX11Trusted \
+                GatewayPorts GlobalKnownHostsFile GSSAPIAuthentication \
+		GSSAPIDelegateCredentials HostbasedAuthentication \
 		HostKeyAlgorithms HostKeyAlias HostName IdentityFile \
+		IdentitiesOnly \
 		KeepAlive KerberosAuthentication KerberosTgtPassing \
 		LocalForward LogLevel MACs NoHostAuthenticationForLocalhost \
 		NumberOfPasswordPrompts PreferredAuthentications \
 		PasswordAuthentication Port Protocol ProtocolKeepAlives \
                 ProxyCommand PubkeyAuthentication RemoteForward \
 		RhostsAuthentication RhostsRSAAuthentication \
-		RSAAuthentication ChallengeResponseAuthentication \
+		RSAAuthentication ServerAliveInterval ServerAliveCountMax \
 		SetupTimeOut SmartcardDevice StrictHostKeyChecking \
+		TCPKeepAlive \
                 UsePrivilegedPort User UserKnownHostsFile UseRsh \
-                XAuthLocation && ret=0
+                VerifyHostKeyDNS XAuthLocation && ret=0
       fi
       ;;
     forward)



Messages sorted by: Reverse Date, Date, Thread, Author