From 3ab02c3055b24413f663d64df64256bf16c1aa64 Mon Sep 17 00:00:00 2001 From: Gregory Kurtzer Date: Thu, 26 Nov 2020 20:37:11 -0800 Subject: [PATCH] Add node and groups back into wwctl command --- internal/app/wwctl/root.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/internal/app/wwctl/root.go b/internal/app/wwctl/root.go index 973e5dfa..3aeb3733 100644 --- a/internal/app/wwctl/root.go +++ b/internal/app/wwctl/root.go @@ -1,7 +1,9 @@ package wwctl import ( + "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" @@ -27,9 +29,9 @@ func init() { 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()) }