From d81dcdf65b9088c8157fabcb4d21040b65cc965b Mon Sep 17 00:00:00 2001 From: Yoshiaki Senda Date: Fri, 9 Jun 2023 00:39:16 +0900 Subject: [PATCH 1/2] add genconfig line * without `genconfig`, warewulfd doesn not read `/etc/warewulf/warewuld.conf`, and read `/usr/local/etc/warewulf/warewulf.conf` instead. * added `genconfig` line to make our build configuration identical to rpm package one This fix #847 --- userdocs/quickstart/el8.rst | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/userdocs/quickstart/el8.rst b/userdocs/quickstart/el8.rst index acd0a848..8f1d770d 100644 --- a/userdocs/quickstart/el8.rst +++ b/userdocs/quickstart/el8.rst @@ -13,6 +13,22 @@ Install Warewulf and dependencies git clone https://github.com/hpcng/warewulf.git cd warewulf + make genconfig \ + PREFIX=/usr \ + BINDIR=/usr/bin \ + SYSCONFDIR=/etc \ + DATADIR=/usr/share \ + LOCALSTATEDIR=/var/lib \ + SHAREDSTATEDIR=/var/lib \ + MANDIR=/usr/share/man \ + INFODIR=/usr/share/info \ + DOCDIR=/usr/share/doc \ + SRVDIR=/var/lib \ + TFTPDIR=/var/lib/tftpboot \ + SYSTEMDDIR=/usr/lib/systemd/system \ + BASHCOMPDIR=/etc/bash_completion.d/ \ + FIREWALLDDIR=/usr/lib/firewalld/services \ + WWCLIENTDIR=/warewulf make all sudo make install From bc614c6eb319f91561e7d611d463b29a2a37e599 Mon Sep 17 00:00:00 2001 From: Yoshiaki Senda Date: Fri, 9 Jun 2023 00:41:50 +0900 Subject: [PATCH 2/2] Update CHANGELOG.md + Fix build configuration on Quickstart guide #847 --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71dc96e8..a0dbae63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add `--parents` option to `overlay import` subcommand to create necessary parent folder. #608 - Fix kernelargs are not printing properly in node list output. #828 +- Fix build configuration on Quickstart guide #847 ### Changed