Sha256: 0a34029f8a1e70581fdde89ecaae535dd9fb6da8961759a23280bc6bbd248365
Contents?: true
Size: 722 Bytes
Versions: 12
Compression:
Stored size: 722 Bytes
Contents
Host <%= host_key %> HostName <%= ssh_host %> User <%= ssh_user %> Port <%= ssh_port %> <% if ! paranoid -%> UserKnownHostsFile /dev/null StrictHostKeyChecking no <% end -%> PasswordAuthentication no <% if private_key_path -%> <% private_key_path.each do |path| %> <% if path.include?(" ") -%> IdentityFile "<%= path %>" <% else -%> IdentityFile <%= path %> <% end -%> <% end -%> <% end -%> <% if keys_only -%> IdentitiesOnly yes <% end -%> <% if log_level -%> LogLevel <%= log_level %> <% else -%> LogLevel FATAL <% end -%> <% if forward_agent -%> ForwardAgent yes <% end -%> <% if forward_x11 -%> ForwardX11 yes <% end -%> <% if proxy_command -%> ProxyCommand <%= proxy_command %> <% end -%>
Version data entries
12 entries across 12 versions & 2 rubygems