1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 12:15:32 +03:00
aports/community/dhcp-helper/dhcp-helper.initd
William Pitcock d8c154d878 community/dhcp-helper: new aport
used in production for a few months, just never got around to committing it
2018-10-08 21:35:42 -05:00

18 lines
345 B
Text

#!/sbin/openrc-run
supervisor=supervise-daemon
description="DHCP relay agent"
nice="0"
pidfile="/run/dhcp-helper.sd.pid"
supervise_daemon_args=""
# the args are very site-specific, use dhcp-helper --help to find out what you need
ARGS=""
command="/usr/sbin/dhcp-helper"
command_args="-n ${ARGS}"
depend() {
use net
after logger firewall
}