Files
warewulf/internal/app/wwctl/profile/list/root.go
2021-04-25 13:56:50 -07:00

24 lines
555 B
Go

package list
import "github.com/spf13/cobra"
var (
baseCmd = &cobra.Command{
Use: "list [flags] [profile pattern]...",
Short: "List profiles and configurations",
Long: "This command will list and show the profile configurations.",
RunE: CobraRunE,
Aliases: []string{"ls"},
}
ShowAll bool
)
func init() {
baseCmd.PersistentFlags().BoolVarP(&ShowAll, "all", "a", false, "Show all node configurations")
}
// GetRootCommand returns the root cobra.Command for the application.
func GetCommand() *cobra.Command {
return baseCmd
}