From 150cf810ddfbe5925eb13e1a4d55f486340c5810 Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Sun, 2 Dec 2018 23:52:57 +0000 Subject: [PATCH] Update comments for -useconf and -useconffile --- yggdrasil.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yggdrasil.go b/yggdrasil.go index 0a82437..5244a8e 100644 --- a/yggdrasil.go +++ b/yggdrasil.go @@ -95,8 +95,8 @@ func doGenconf(isjson bool) string { func main() { // Configure the command line parameters. genconf := flag.Bool("genconf", false, "print a new config to stdout") - useconf := flag.Bool("useconf", false, "read config from stdin") - useconffile := flag.String("useconffile", "", "read config from specified file path") + useconf := flag.Bool("useconf", false, "read HJSON/JSON config from stdin") + useconffile := flag.String("useconffile", "", "read HJSON/JSON 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)")