mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-19 17:25:17 +03:00
http://kea.isc.org High-performance, extensible DHCP server engine from ISC, supporting both DHCPv4 and DHCPv6
12 lines
205 B
Text
Executable file
12 lines
205 B
Text
Executable file
#!/sbin/openrc-run
|
|
|
|
name="kea-dhcp4"
|
|
command="/usr/sbin/kea-dhcp4"
|
|
command_args="-c /etc/kea/kea-dhcp4.conf"
|
|
command_background="yes"
|
|
pidfile="/run/kea-dhcp4.pid"
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|