dhcp: Made runit services not fork to background

This commit is contained in:
Toyam Cox 2016-01-14 22:53:22 -05:00
parent ff28743831
commit 5f3736d07d
3 changed files with 3 additions and 3 deletions

View file

@ -1,3 +1,3 @@
#!/bin/sh
[ -r conf ] && . ./conf
exec dhcpd ${OPTS:=-4 -q -pf /run/dhcpd4.pid}
exec dhcpd -f ${OPTS:=-4 -q -pf /run/dhcpd4.pid}

View file

@ -1,3 +1,3 @@
#!/bin/sh
[ -r conf ] && . ./conf
exec dhcpd ${OPTS:=-6 -q -pf /run/dhcpd6.pid}
exec dhcpd -f ${OPTS:=-6 -q -pf /run/dhcpd6.pid}

View file

@ -3,7 +3,7 @@ pkgname=dhcp
_distver=4.3.3
_patchver=P1
version=${_distver}.${_patchver}
revision=1
revision=2
wrksrc="dhcp-${_distver}-${_patchver}"
build_style=gnu-configure
disable_parallel_build=yes