(appConfig *config.Config, node *api.Node)
| 260 | } |
| 261 | |
| 262 | func resolveSSHKeyfile(appConfig *config.Config, node *api.Node) string { |
| 263 | if appConfig == nil { |
| 264 | return "" |
| 265 | } |
| 266 | |
| 267 | return appConfig.ResolveSSHSettings(sourceProfileName(node)).SSHKeyfile |
| 268 | } |
| 269 | |
| 270 | func resolveSSHUser(appConfig *config.Config, node *api.Node) string { |
| 271 | if appConfig == nil { |
no test coverage detected