diff --git a/CHANGELOG.md b/CHANGELOG.md index bf73cb33..4fd7d4b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 `/etc/hosts` - Added experimental dnsmasq support. +- new subcommand `wwctl genconf` is available with following subcommands: + * `completions` which will create the files used for bash-completion. Also + fish an zsh completions can be generated + * `defaults` which will generate a valid `defaults.conf` + * `man` which will generate the man pages in the specified directory + * `reference` which will generate a reference documentation for the wwctl commands + * `warwulfconf print` which will print the used `warewulf.conf`. If there is no valid + `warewulf.conf` a valid configuration is provided, prefilled with default values + and an IP configuration derived from the network configuration of the host +- All paths can now be configured in `warewulf.conf`, check the paths section of of + `wwctl --emptyconf genconfig warewulfconf print` for the available paths. +- Added experimental dnsmasq support. + - new subcommand `wwctl genconf` is available with following subcommands: * `completions` which will create the files used for bash-completion. Also fish an zsh completions can be generated diff --git a/internal/app/wwctl/genconf/root.go b/internal/app/wwctl/genconf/root.go index b208f4ae..1a979be4 100644 --- a/internal/app/wwctl/genconf/root.go +++ b/internal/app/wwctl/genconf/root.go @@ -6,7 +6,6 @@ import ( "github.com/hpcng/warewulf/internal/app/wwctl/genconf/man" "github.com/hpcng/warewulf/internal/app/wwctl/genconf/reference" "github.com/hpcng/warewulf/internal/app/wwctl/genconf/warewulfconf" - "github.com/hpcng/warewulf/internal/app/wwctl/genconf/man" "github.com/spf13/cobra" )