First pass at a rework of the overlay subsystem in Warewulf

This commit is contained in:
Gregory Kurtzer
2021-12-29 16:11:25 -08:00
parent 02a5de3873
commit 00d8d42e9d
62 changed files with 405 additions and 628 deletions

View File

@@ -7,11 +7,11 @@ import (
var (
baseCmd = &cobra.Command{
DisableFlagsInUseLine: true,
Use: "create [OPTIONS] {system|runtime} OVERLAY_NAME",
Short: "Initialize a new Overlay",
Long: "This command creates a new empty system or runtime overlay named OVERLAY_NAME.",
RunE: CobraRunE,
Args: cobra.ExactArgs(2),
Use: "create [OPTIONS] OVERLAY_NAME",
Short: "Initialize a new Overlay",
Long: "This command creates a new empty overlay with the given OVERLAY_NAME.",
RunE: CobraRunE,
Args: cobra.ExactArgs(2),
}
)