Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package warewulf4 for openSUSE:Factory checked in at 2024-05-28 17:29:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/warewulf4 (Old) and /work/SRC/openSUSE:Factory/.warewulf4.new.24587 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "warewulf4" Tue May 28 17:29:47 2024 rev:22 rq:1177285 version:4.5.2 Changes: -------- --- /work/SRC/openSUSE:Factory/warewulf4/warewulf4.changes 2024-05-16 17:15:56.409585494 +0200 +++ /work/SRC/openSUSE:Factory/.warewulf4.new.24587/warewulf4.changes 2024-05-28 17:30:41.264109453 +0200 @@ -1,0 +2,6 @@ +Mon May 27 17:21:53 UTC 2024 - Christian Goll <[email protected]> + +- added wwctl-configure-all-calls-SSH-keys.patch to fix + (bsc#1225402) + +------------------------------------------------------------------- New: ---- wwctl-configure-all-calls-SSH-keys.patch BETA DEBUG BEGIN: New: - added wwctl-configure-all-calls-SSH-keys.patch to fix (bsc#1225402) BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ warewulf4.spec ++++++ --- /var/tmp/diff_new_pack.W3wCEE/_old 2024-05-28 17:30:42.052138269 +0200 +++ /var/tmp/diff_new_pack.W3wCEE/_new 2024-05-28 17:30:42.052138269 +0200 @@ -35,6 +35,7 @@ Source10: config-ww4.sh Source11: adjust_overlays.sh Source20: README.dnsmasq +Patch1: wwctl-configure-all-calls-SSH-keys.patch # no firewalld in sle12 %if 0%{?sle_version} >= 150000 || 0%{?suse_version} > 1500 ++++++ wwctl-configure-all-calls-SSH-keys.patch ++++++ diff --git a/internal/app/wwctl/configure/main.go b/internal/app/wwctl/configure/main.go index c663dc71..fad8c4af 100644 --- a/internal/app/wwctl/configure/main.go +++ b/internal/app/wwctl/configure/main.go @@ -4,6 +4,7 @@ import ( "os" "github.com/spf13/cobra" + warewulfconf "github.com/warewulf/warewulf/internal/pkg/config" "github.com/warewulf/warewulf/internal/pkg/configure" "github.com/warewulf/warewulf/internal/pkg/wwlog" ) @@ -23,7 +24,7 @@ func CobraRunE(cmd *cobra.Command, args []string) error { os.Exit(1) } - err = configure.SSH() + err = configure.SSH(warewulfconf.Get().SSH.KeyTypes...) if err != nil { wwlog.Error("%s", err) os.Exit(1)
