From b6e6795deefa4882a956d96d45d1e8995f78af16 Mon Sep 17 00:00:00 2001 From: Jonathon Anderson Date: Sun, 16 Apr 2023 20:58:39 -0600 Subject: [PATCH] Removed "glob" from node pattern description A glob is a pattern that supports * and ? wildcards. This is not supported for node patterns. I'd call these "hostlist" patterns; but easier to just leave it generic for now until and unless there is documentation to refer to on the website about the pattern type. Signed-off-by: Jonathon Anderson --- internal/app/wwctl/node/list/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/app/wwctl/node/list/root.go b/internal/app/wwctl/node/list/root.go index c3208a7d..37acc641 100644 --- a/internal/app/wwctl/node/list/root.go +++ b/internal/app/wwctl/node/list/root.go @@ -19,7 +19,7 @@ func GetCommand() *cobra.Command { Use: "list [OPTIONS] [PATTERN]", Short: "List nodes", Long: "This command lists all configured nodes. Optionally, it will list only\n" + - "nodes matching a glob PATTERN.", + "nodes matching a PATTERN.", RunE: CobraRunE(&vars), Aliases: []string{"ls"}, ValidArgsFunction: func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {