summaryrefslogtreecommitdiff
path: root/src/systemd/isc-dhcp-server6.service
blob: 27bebc57f0fb0b37527891b906622eb3af66505a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[Unit]
Description=ISC DHCP IPv6 server
Documentation=man:dhcpd(8)
RequiresMountsFor=/run
ConditionPathExists=/run/dhcp-server/dhcpdv6.conf
After=vyos-router.service

[Service]
WorkingDirectory=/run/dhcp-server
# The leases files need to be root:vyattacfg even when dropping privileges
ExecStart=/bin/sh -ec '\
    [ -e /config/dhcpdv6.leases ] || touch /config/dhcpdv6.leases; \
    chown root:vyattacfg /config/dhcpdv6.leases; \
    chmod 664 /config/dhcpdv6.leases; \
    exec /usr/sbin/dhcpd -user nobody -group nogroup -f -6 -pf /run/dhcp-server/dhcpdv6.pid -cf /run/dhcp-server/dhcpdv6.conf -lf /config/dhcpdv6.leases'

[Install]
WantedBy=multi-user.target