all the directives are copied in with their types. working on validators now.

This commit is contained in:
2020-09-27 03:23:58 -04:00
parent c22786204a
commit 4b912a8dae
21 changed files with 859 additions and 131 deletions

10
config/type.go Normal file
View File

@@ -0,0 +1,10 @@
package config
type sshBool bool
func (b sshBool) Str() string {
if b {
return "yes"
}
return "no"
}