diff --git a/internal/app/wwctl/node/set/root.go b/internal/app/wwctl/node/set/root.go index fe41253a..e4c84d24 100644 --- a/internal/app/wwctl/node/set/root.go +++ b/internal/app/wwctl/node/set/root.go @@ -6,9 +6,10 @@ var ( baseCmd = &cobra.Command{ Use: "set [flags] [node pattern]...", Short: "Configure node properties", - Long: "This command will allow you to set configuration properties for nodes.", - Args: cobra.MinimumNArgs(1), - RunE: CobraRunE, + Long: "This command will allow you to set configuration properties for nodes.\n\n" + + "Note: use the string 'UNSET' to remove a configuration", + Args: cobra.MinimumNArgs(1), + RunE: CobraRunE, } SetComment string SetContainer string @@ -31,7 +32,7 @@ var ( SetIpmiGateway string SetIpmiUsername string SetIpmiPassword string - SetIpmiInterface string + SetIpmiInterface string SetNodeAll bool SetYes bool SetProfile string diff --git a/internal/app/wwctl/profile/set/root.go b/internal/app/wwctl/profile/set/root.go index cf152aa8..019ea904 100644 --- a/internal/app/wwctl/profile/set/root.go +++ b/internal/app/wwctl/profile/set/root.go @@ -6,9 +6,10 @@ var ( baseCmd = &cobra.Command{ Use: "set [flags] ...", Short: "Configure node profile properties", - Long: "This command will allow you to set configuration properties for node profiles.", - Args: cobra.MinimumNArgs(1), - RunE: CobraRunE, + Long: "This command will allow you to set configuration properties for node profiles.\n\n" + + "Note: use the string 'UNSET' to remove a configuration", + Args: cobra.MinimumNArgs(1), + RunE: CobraRunE, } SetAll bool SetYes bool