b2d157cbdb897c055f30f8f22a632976d859060c
[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 main
6
7 import (
8         "flag"
9         "fmt"
10         "os"
11 )
12
13 func usage(fs *flag.FlagSet) {
14         fmt.Fprintf(os.Stderr, `
15 crunch-dispatch-slurm runs queued Arvados containers by submitting
16 SLURM batch jobs.
17
18 Options:
19 `)
20         fs.PrintDefaults()
21         fmt.Fprintf(os.Stderr, `
22
23 For configuration instructions see https://doc.arvados.org/install/crunch2-slurm/install-dispatch.html
24 `)
25 }