(user, host string, jumphost config.SSHJumpHost)
| 341 | } |
| 342 | |
| 343 | func buildSSHArgs(user, host string, jumphost config.SSHJumpHost) []string { |
| 344 | return buildSSHArgsBase(user, host, jumphost) |
| 345 | } |
| 346 | |
| 347 | // BuildSSHArgs constructs the argument list for the ssh binary to connect to |
| 348 | // host as user, optionally via jumphost. Exported for use by CLI subcommands |
no test coverage detected