diff --git a/internal/app/wwctl/root.go b/internal/app/wwctl/root.go index cd1b64c3..973e5dfa 100644 --- a/internal/app/wwctl/root.go +++ b/internal/app/wwctl/root.go @@ -1,12 +1,10 @@ package wwctl import ( - "github.com/hpcng/warewulf/internal/app/wwctl/build" - "github.com/hpcng/warewulf/internal/app/wwctl/group" "github.com/hpcng/warewulf/internal/app/wwctl/kernel" - "github.com/hpcng/warewulf/internal/app/wwctl/node" "github.com/hpcng/warewulf/internal/app/wwctl/overlay" "github.com/hpcng/warewulf/internal/app/wwctl/vnfs" + "github.com/hpcng/warewulf/internal/pkg/wwlog" "github.com/spf13/cobra" ) @@ -26,12 +24,12 @@ func init() { rootCmd.PersistentFlags().BoolVarP(&verboseArg, "verbose", "v", false, "Run with increased verbosity.") rootCmd.PersistentFlags().BoolVarP(&debugArg, "debug", "d", false, "Run with debugging messages enabled.") - rootCmd.AddCommand(build.GetCommand()) rootCmd.AddCommand(overlay.GetCommand()) + //rootCmd.AddCommand(build.GetCommand()) rootCmd.AddCommand(vnfs.GetCommand()) - rootCmd.AddCommand(node.GetCommand()) + //rootCmd.AddCommand(node.GetCommand()) rootCmd.AddCommand(kernel.GetCommand()) - rootCmd.AddCommand(group.GetCommand()) + //rootCmd.AddCommand(group.GetCommand()) }