kea: fix /var/run/kea permissions

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 <stijn@linux-ipv6.be>
This commit is contained in:
Stijn Tintel
2026-01-15 20:03:16 +02:00
committed by Philip Prindeville
parent 47a3e4d935
commit e4f965537d

View File

@@ -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"