X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e5e9ae2751cf691c7eeee60eac9d70e4f1e57a3b..6f020ee8e060d44811e92f5b3faa1b1cba876b42:/services/crunch-dispatch-slurm/usage.go diff --git a/services/crunch-dispatch-slurm/usage.go b/services/crunch-dispatch-slurm/usage.go index 683ff763fb..785843b198 100644 --- a/services/crunch-dispatch-slurm/usage.go +++ b/services/crunch-dispatch-slurm/usage.go @@ -1,28 +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(` - { - "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 +`) }