fix indentation

This commit is contained in:
Guillaume Rousse 2009-05-02 17:20:41 +02:00
parent 39a143e083
commit 41746f0bcc

View File

@ -20,14 +20,16 @@ _ssh()
return 0
;;
-c)
COMPREPLY=( $( compgen -W '3des-cbc aes128-cbc aes192-cbc \
aes256-cbc aes128-ctr aes192-ctr aes256-ctr arcfour128 \
arcfour256 arcfour blowfish-cbc cast128-cbc' -- $cur ) )
COMPREPLY=( $( compgen -W '3des-cbc aes128-cbc \
aes192-cbc aes256-cbc aes128-ctr aes192-ctr \
aes256-ctr arcfour128 arcfour256 arcfour \
blowfish-cbc cast128-cbc' -- $cur ) )
return 0
;;
-c)
COMPREPLY=( $( compgen -W 'hmac-md5 hmac-sha1 umac-64@openssh.com \
hmac-ripemd160 hmac-sha1-96 hmac-md5-96' -- $cur ) )
COMPREPLY=( $( compgen -W 'hmac-md5 hmac-sha1 \
umac-64@openssh.com hmac-ripemd160 \
hmac-sha1-96 hmac-md5-96' -- $cur ) )
return 0
;;
-l)
@ -35,24 +37,31 @@ _ssh()
return 0
;;
-o)
COMPREPLY=( $( compgen -W 'AddressFamily BatchMode BindAddress \
ChallengeResponseAuthentication CheckHostIP Cipher Ciphers \
ClearAllForwardings Compression CompressionLevel \
ConnectionAttempts ConnectTimeout ControlMaster ControlPath \
DynamicForward EscapeChar ExitOnForwardFailure ForwardAgent \
ForwardX11 ForwardX11Trusted GatewayPorts GlobalKnownHostsFile \
GSSAPIAuthentication GSSAPIDelegateCredentials HashKnownHosts \
Host HostbasedAuthentication HostKeyAlgorithms HostKeyAlias \
HostName IdentityFile IdentitiesOnly KbdInteractiveDevices \
COMPREPLY=( $( compgen -W 'AddressFamily BatchMode \
BindAddress ChallengeResponseAuthentication \
CheckHostIP Cipher Ciphers ClearAllForwardings \
Compression CompressionLevel \
ConnectionAttempts ConnectTimeout \
ControlMaster ControlPath DynamicForward \
EscapeChar ExitOnForwardFailure ForwardAgent \
ForwardX11 ForwardX11Trusted GatewayPorts \
GlobalKnownHostsFile GSSAPIAuthentication \
GSSAPIDelegateCredentials HashKnownHosts Host \
HostbasedAuthentication HostKeyAlgorithms \
HostKeyAlias HostName IdentityFile \
IdentitiesOnly KbdInteractiveDevices \
LocalCommand LocalForward LogLevel MACs \
NoHostAuthenticationForLocalhost NumberOfPasswordPrompts \
PasswordAuthentication PermitLocalCommand Port \
PreferredAuthentications Protocol ProxyCommand \
PubkeyAuthentication RekeyLimit RemoteForward \
RhostsRSAAuthentication RSAAuthentication SendEnv \
ServerAliveInterval ServerAliveCountMax SmartcardDevice \
StrictHostKeyChecking TCPKeepAlive Tunnel TunnelDevice \
UsePrivilegedPort User UserKnownHostsFile VerifyHostKeyDNS \
NoHostAuthenticationForLocalhost \
NumberOfPasswordPrompts PasswordAuthentication \
PermitLocalCommand Port \
PreferredAuthentications Protocol \
ProxyCommand PubkeyAuthentication RekeyLimit \
RemoteForward RhostsRSAAuthentication \
RSAAuthentication SendEnv ServerAliveInterval \
ServerAliveCountMax SmartcardDevice \
StrictHostKeyChecking TCPKeepAlive Tunnel \
TunnelDevice UsePrivilegedPort User \
UserKnownHostsFile VerifyHostKeyDNS \
VisualHostKey XAuthLocation' -- $cur ) )
return 0
;;