(filename string)
| 291 | } |
| 292 | |
| 293 | func isSystem(filename string) bool { |
| 294 | // TODO: not sure this is the best way to detect a system repo |
| 295 | return strings.HasPrefix(filepath.Clean(filename), "/etc/ssh") |
| 296 | } |
| 297 | |
| 298 | // Decode reads r into a Config, or returns an error if r could not be parsed as |
| 299 | // an SSH config file. |