package command import ( "strings" "github.com/mitchellh/cli" ) type JobPeriodicCommand struct { Meta } func (f *JobPeriodicCommand) Name() string { return "periodic" } func (f *JobPeriodicCommand) Run(args []string) int { return cli.RunResultHelp } func (f *JobPeriodicCommand) Synopsis() string { return "Interact with periodic jobs" } func (f *JobPeriodicCommand) Help() string { helpText := ` Usage: nomad job periodic [options] [args] This command groups subcommands for interacting with periodic jobs. Force a periodic job: $ nomad job periodic force Please see the individual subcommand help for detailed usage information. ` return strings.TrimSpace(helpText) }