Merge pull request #634 from anderbubble/609-nodes-list

Fix 'nodes' alias for 'node' not 'profile'
This commit is contained in:
Christian Goll
2023-01-10 16:26:54 +01:00
committed by GitHub
3 changed files with 2 additions and 1 deletions

View File

@@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- The 'nodes' alias now correctly refers to 'node' rather than 'profile'
- Work-around for older versions of gzip that lack a `--keep` flag
during `wwctl container build`. #580
- The default ipxe template is once again specified as a built-in

View File

@@ -22,6 +22,7 @@ var (
Long: "Management of node settings. All node ranges can use brackets to identify\n" +
"node ranges. For example: n00[00-4].cluster[0-1] will identify the first 5 nodes\n" +
"in cluster0 and cluster1.",
Aliases: []string{"nodes"},
}
)

View File

@@ -15,7 +15,6 @@ var (
Use: "profile COMMAND [OPTIONS]",
Short: "Node configuration profile management",
Long: "Management of node profile settings",
Aliases: []string{"nodes"},
}
)