mirror of
https://github.com/openwrt/packages.git
synced 2026-02-04 12:06:29 +08:00
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:
committed by
Philip Prindeville
parent
47a3e4d935
commit
e4f965537d
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user