Still working on CLI framework for wwctl overlay

This commit is contained in:
Gregory Kurtzer
2020-11-16 22:43:13 -08:00
parent 85603ee947
commit 108174d35c
9 changed files with 123 additions and 8 deletions

View File

@@ -6,10 +6,12 @@ import (
var (
baseCmd = &cobra.Command{
Use: "create",
Use: "create [overlay name]",
Short: "Initialize a new Overlay",
Long: "Create a new Warewulf provisioning overlay",
RunE: CobraRunE,
Args: cobra.ExactArgs(1),
}
SystemOverlay bool
)