5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-11-22 15:20:30 +00:00

Add -json flag for -genconf and -normaliseconf

This commit is contained in:
Neil Alexander 2018-12-02 23:49:48 +00:00
parent 684632eb3d
commit ad30e36881
No known key found for this signature in database
GPG Key ID: A02A2019A2BB0944

View File

@ -76,9 +76,15 @@ func generateConfig(isAutoconf bool) *nodeConfig {
// Generates a new configuration and returns it in HJSON format. This is used
// with -genconf.
func doGenconf() string {
func doGenconf(isjson bool) string {
cfg := generateConfig(false)
bs, err := hjson.Marshal(cfg)
var bs []byte
var err error
if isjson {
bs, err = json.MarshalIndent(cfg, "", " ")
} else {
bs, err = hjson.Marshal(cfg)
}
if err != nil {
panic(err)
}
@ -92,6 +98,7 @@ func main() {
useconf := flag.Bool("useconf", false, "read config from stdin")
useconffile := flag.String("useconffile", "", "read config from specified file path")
normaliseconf := flag.Bool("normaliseconf", false, "use in combination with either -useconf or -useconffile, outputs your configuration normalised")
confjson := flag.Bool("json", false, "print configuration from -genconf or -normaliseconf as JSON instead of HJSON")
autoconf := flag.Bool("autoconf", false, "automatic mode (dynamic IP, peer with IPv6 neighbors)")
flag.Parse()
@ -186,7 +193,12 @@ func main() {
// their configuration file with newly mapped names (like above) or to
// convert from plain JSON to commented HJSON.
if *normaliseconf {
bs, err := hjson.Marshal(cfg)
var bs []byte
if *confjson {
bs, err = json.MarshalIndent(cfg, "", " ")
} else {
bs, err = hjson.Marshal(cfg)
}
if err != nil {
panic(err)
}
@ -195,7 +207,7 @@ func main() {
}
case *genconf:
// Generate a new configuration and print it to stdout.
fmt.Println(doGenconf())
fmt.Println(doGenconf(*confjson))
default:
// No flags were provided, therefore print the list of flags to stdout.
flag.PrintDefaults()