LoadHostConfigs loads all hosts with complete configuration This is a wrapper around LoadAllHostConfigs from writer.go
()
| 85 | // LoadHostConfigs loads all hosts with complete configuration |
| 86 | // This is a wrapper around LoadAllHostConfigs from writer.go |
| 87 | func LoadHostConfigs() (map[string]*HostConfig, error) { |
| 88 | return LoadAllHostConfigs() |
| 89 | } |
| 90 | |
| 91 | func parseKV(line string) (string, string) { |
| 92 | // support "Key Value" and "Key=Value", case-insensitive key |
nothing calls this directly
no test coverage detected