kea: fix /var/run/kea permissions
authorStijn Tintel <redacted>
Thu, 15 Jan 2026 18:03:16 +0000 (20:03 +0200)
committerPhilip Prindeville <redacted>
Tue, 20 Jan 2026 20:19:17 +0000 (13:19 -0700)
This is required to fix the following error:

kea-dhcp-ddns[3115]: 2026-01-15 20:00:36.776 FATAL [kea-dhcp-ddns.dctl/3115.547785590368] DCTL_CONFIG_FILE_LOAD_FAIL DhcpDdns reason: 'socket-name' is invalid: socket path:/var/run/kea does not exist or does not have permssions = 750

Signed-off-by: Stijn Tintel <redacted>
net/kea/files/kea.init

index 1a351703a80422f74e6cb0b6cbd11261e24a38b6..061876c82599a28cf64dbe86dec002822fb25e81 100755 (executable)
@@ -8,7 +8,7 @@ BIN_PATH="/usr/sbin"
 CONF_PATH="/etc/kea"
 
 start_service() {
-       mkdir -p /var/run/kea
+       mkdir --mode=0750 -p /var/run/kea
 
        config_load "kea"
        config_foreach start_kea "service"
git clone https://git.99rst.org/PROJECT