The provisionerd command group is deprecated and hidden but kept around for backwards compatibility with the start command.
()
| 17 | // The provisionerd command group is deprecated and hidden but kept around |
| 18 | // for backwards compatibility with the start command. |
| 19 | func (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 | } |
no test coverage detected