Refactor the multi-host salt install page.
[arvados.git] / services / crunch-dispatch-slurm / usage.go
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 package dispatchslurm
6
7 import (
8         "flag"
9         "fmt"
10 )
11
12 func usage(fs *flag.FlagSet) {
13         fmt.Fprintf(fs.Output(), `
14 crunch-dispatch-slurm runs queued Arvados containers by submitting
15 SLURM batch jobs.
16
17 Options:
18 `)
19         fs.PrintDefaults()
20         fmt.Fprintf(fs.Output(), `
21
22 For configuration instructions see https://doc.arvados.org/install/crunch2-slurm/install-dispatch.html
23 `)
24 }