MCPcopy Create free account
hub / github.com/coder/coder / provisionerd

Method provisionerd

enterprise/cli/provisionerdaemons.go:19–33  ·  view source on GitHub ↗

The provisionerd command group is deprecated and hidden but kept around for backwards compatibility with the start command.

()

Source from the content-addressed store, hash-verified

17// The provisionerd command group is deprecated and hidden but kept around
18// for backwards compatibility with the start command.
19func (r *RootCmd) provisionerd() *serpent.Command {
20 cmd := &serpent.Command{
21 Use: "provisionerd",
22 Short: "Manage provisioner daemons",
23 Handler: func(inv *serpent.Invocation) error {
24 return inv.Command.HelpHandler(inv)
25 },
26 Children: []*serpent.Command{
27 r.provisionerDaemonStart(),
28 },
29 Hidden: true,
30 }
31
32 return cmd
33}

Callers 1

enterpriseOnlyMethod · 0.95

Calls 1

Tested by

no test coverage detected