Refactor the multi-host salt install page.
[arvados.git] / services / crunch-dispatch-slurm / usage.go
index ddfbdb09266625dfa415166074a663c66273ff24..785843b1986a5e2e7d861985c442c1fe95ce214b 100644 (file)
@@ -1,34 +1,24 @@
-package main
+// Copyright (C) The Arvados Authors. All rights reserved.
+//
+// SPDX-License-Identifier: AGPL-3.0
+
+package dispatchslurm
 
 import (
        "flag"
        "fmt"
-       "os"
 )
 
-var exampleConfigFile = []byte(`
-    {
-       "Client": {
-           "APIHost": "zzzzz.arvadosapi.com",
-           "AuthToken": "xyzzy",
-           "Insecure": false
-           "KeepServiceURIs": [],
-       },
-       "CrunchRunCommand": ["crunch-run"],
-       "PollPeriod": "10s",
-       "SbatchArguments": ["--partition=foo", "--exclude=node13"]
-    }`)
-
 func usage(fs *flag.FlagSet) {
-       fmt.Fprintf(os.Stderr, `
+       fmt.Fprintf(fs.Output(), `
 crunch-dispatch-slurm runs queued Arvados containers by submitting
 SLURM batch jobs.
 
 Options:
 `)
        fs.PrintDefaults()
-       fmt.Fprintf(os.Stderr, `
-Example config file:
-%s
-`, exampleConfigFile)
+       fmt.Fprintf(fs.Output(), `
+
+For configuration instructions see https://doc.arvados.org/install/crunch2-slurm/install-dispatch.html
+`)
 }