X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a5445a2ae553b0723d8579462bcb48855f71a17c..273a233818ae39e843fab0276f9e381da6645d28:/services/keep-web/main.go diff --git a/services/keep-web/main.go b/services/keep-web/main.go index 13d8c1b329..5f4cb50904 100644 --- a/services/keep-web/main.go +++ b/services/keep-web/main.go @@ -62,6 +62,8 @@ func main() { "Only serve attachments at the given `host:port`"+deprecated) flag.BoolVar(&cfg.TrustAllContent, "trust-all-content", false, "Serve non-public content from a single origin. Dangerous: read docs before using!"+deprecated) + dumpConfig := flag.Bool("dump-config", false, + "write current configuration to stdout and exit") flag.Usage = usage flag.Parse() @@ -78,12 +80,16 @@ func main() { cfg.AnonymousTokens = []string{os.Getenv("ARVADOS_API_TOKEN")} } + if *dumpConfig { + log.Fatal(config.DumpAndExit(cfg)) + } + os.Setenv("ARVADOS_API_HOST", cfg.Client.APIHost) srv := &server{Config: cfg} if err := srv.Start(); err != nil { log.Fatal(err) } - if _, err := daemon.SdNotify("READY=1"); err != nil { + if _, err := daemon.SdNotify(false, "READY=1"); err != nil { log.Printf("Error notifying init daemon: %v", err) } log.Println("Listening at", srv.Addr)