SHA256
1
0
forked from pool/warewulf4
Go to file
Christian Goll a758e046e7 - Update to version 4.5.6:
* removed following patches as accpted upstream:
   - empty-container.patch
   - enhanced-cont-list.patch
   - fix-overlay-built.patch
   - issue-motd.patch
   - oci-vars.patch
   - verbose-exec.patch

OBS-URL: https://build.opensuse.org/package/show/network:cluster/warewulf4?expand=0&rev=85
2024-08-12 12:30:56 +00:00
_service - Update to version 4.5.6: 2024-08-12 12:30:56 +00:00
.gitattributes - Update to version 4.5.6: 2024-08-12 12:30:56 +00:00
.gitignore - Update to version 4.5.6: 2024-08-12 12:30:56 +00:00
adjust_overlays.sh - Update to version 4.5.6: 2024-08-12 12:30:56 +00:00
config-ww4.sh - Update to version 4.5.6: 2024-08-12 12:30:56 +00:00
empty-container.patch - Update to version 4.5.6: 2024-08-12 12:30:56 +00:00
enhanced-cont-list.patch - Update to version 4.5.6: 2024-08-12 12:30:56 +00:00
fix-overlay-built.patch - Update to version 4.5.6: 2024-08-12 12:30:56 +00:00
issue-motd.patch - Update to version 4.5.6: 2024-08-12 12:30:56 +00:00
oci-vars.patch - Update to version 4.5.6: 2024-08-12 12:30:56 +00:00
README.dnsmasq - Update to version 4.5.6: 2024-08-12 12:30:56 +00:00
vendor.tar.xz - Update to version 4.5.6: 2024-08-12 12:30:56 +00:00
verbose-exec.patch - Update to version 4.5.6: 2024-08-12 12:30:56 +00:00
warewulf4-rpmlintrc - Update to version 4.5.6: 2024-08-12 12:30:56 +00:00
warewulf4-v4.5.2.tar.gz - Update to version 4.5.6: 2024-08-12 12:30:56 +00:00
warewulf4-v4.5.5.tar.gz - Update to version 4.5.6: 2024-08-12 12:30:56 +00:00
warewulf4.changes - Update to version 4.5.6: 2024-08-12 12:30:56 +00:00
warewulf4.spec - Update to version 4.5.6: 2024-08-12 12:30:56 +00:00
warewulf-4.5.6.obscpio - Update to version 4.5.6: 2024-08-12 12:30:56 +00:00
warewulf.obsinfo - Update to version 4.5.6: 2024-08-12 12:30:56 +00:00
wwctl-configure-all-calls-SSH-keys.patch - Update to version 4.5.6: 2024-08-12 12:30:56 +00:00

Replace dhcpd and tftp with dnsmasq
===================================

The isc `dhcpd` server and `tftp` service can be replaced by `dnsmasq` as 
singe service, which has also the benefit that dns entries for the 
wwarewulf cluster will then also be provided.

Installation
-----------

Before the installation, make sure that `dhcpd` and `tftp` are disabled.
You can do that with the commands:
```
systemctl disable dhcpd
systemctl stop dhcpd
systemctl disable tftp
systemctl stop tftp
```

Now you can install `dnsmasq` with command 
```
zypper install dnsmasq
```

After the installation you have to instruct `warewulf` to use  `dnsmasq` as
`dhcpd` and `tftp` service, `dnsmasq` has to be specified in the configuration
file `/etc/warewulf/warewulf.conf`. There you have to change the two following 
values:
```
tftp:
  systemd name: dnsmasq
dhcp:
  systemd name: dnsmasq
```

The configuration of `dnsmasq` doesn't need to be changed, as the default configuration
includes all files with following pattern `/etc/dnsmasq.d/*conf` into its configuration.
This configuration is created by the template `overlays/host/etc/dnsmasq.d/ww4-hosts.conf.ww`.
In order to build this template run
```
wwctl overlay build -H
```
After that the `dnsmasq` service has to be enabled with either
```
systemctl enable --now dnsmasq
```
or by (re)configuring warewulf with 
```
wwctl configure dhcp
wwctl configure tftp
```