From d9b21df38ec3dcfe8e28928beca31db63cdf3ebc Mon Sep 17 00:00:00 2001 From: Gregory Kurtzer Date: Sat, 19 Dec 2020 21:05:44 -0800 Subject: [PATCH] Include the NFS configure command --- internal/app/wwctl/configure/root.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/app/wwctl/configure/root.go b/internal/app/wwctl/configure/root.go index 878e83ca..faa2e74c 100644 --- a/internal/app/wwctl/configure/root.go +++ b/internal/app/wwctl/configure/root.go @@ -4,6 +4,7 @@ import ( "fmt" "github.com/hpcng/warewulf/internal/app/wwctl/configure/dhcp" "github.com/hpcng/warewulf/internal/app/wwctl/configure/hosts" + "github.com/hpcng/warewulf/internal/app/wwctl/configure/nfs" "github.com/hpcng/warewulf/internal/app/wwctl/configure/ssh" "github.com/hpcng/warewulf/internal/app/wwctl/configure/tftp" "github.com/spf13/cobra" @@ -25,6 +26,7 @@ func init() { baseCmd.AddCommand(tftp.GetCommand()) baseCmd.AddCommand(hosts.GetCommand()) baseCmd.AddCommand(ssh.GetCommand()) + baseCmd.AddCommand(nfs.GetCommand()) baseCmd.PersistentFlags().BoolVarP(&SetDoAll, "all", "a", false, "Configure all services") }