new overlay variables command

This commit is contained in:
Christian Goll
2025-10-13 17:07:14 +02:00
committed by Jonathon Anderson
parent 847a4386e1
commit facde98fb5
4 changed files with 171 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ import (
"github.com/warewulf/warewulf/internal/app/wwctl/overlay/list"
"github.com/warewulf/warewulf/internal/app/wwctl/overlay/mkdir"
"github.com/warewulf/warewulf/internal/app/wwctl/overlay/show"
"github.com/warewulf/warewulf/internal/app/wwctl/overlay/variables"
)
var (
@@ -35,6 +36,7 @@ func init() {
baseCmd.AddCommand(imprt.GetCommand())
baseCmd.AddCommand(chmod.GetCommand())
baseCmd.AddCommand(chown.GetCommand())
baseCmd.AddCommand(variables.GetCommand())
}
// GetRootCommand returns the root cobra.Command for the application.