SSHExecutor
| 14 | |
| 15 | // SSHExecutor |
| 16 | type SSHExecutor struct { |
| 17 | Host string |
| 18 | User string |
| 19 | Password string |
| 20 | IdentityFile string |
| 21 | } |
| 22 | |
| 23 | // WithIdentityFile sets the identity file option for the ssh executor |
| 24 | func WithIdentityFile(identityFile string) func(e *SSHExecutor) { |
nothing calls this directly
no outgoing calls
no test coverage detected