24 lines
434 B
Go
24 lines
434 B
Go
package services
|
|
|
|
import (
|
|
"github.com/hpcng/warewulf/internal/app/wwctl/services/dhcp"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
baseCmd = &cobra.Command{
|
|
Use: "services",
|
|
Short: "Initialize Warewulf services",
|
|
Long: "Warewulf Initialization",
|
|
}
|
|
)
|
|
|
|
func init() {
|
|
baseCmd.AddCommand(dhcp.GetCommand())
|
|
}
|
|
|
|
// GetRootCommand returns the root cobra.Command for the application.
|
|
func GetCommand() *cobra.Command {
|
|
return baseCmd
|
|
}
|