1
0
Fork 0
mirror of https://github.com/pygos/init-scripts.git synced 2024-05-06 14:16:13 +02:00
init-scripts/services/dhcpcdmaster
David Oberhollenzer 244f4bbe7a Run various services in foreground
This commit changes dhpcd master and nginx scripts to run the respective
processes in background and let initd supervise them directly.

Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
2019-03-20 20:52:55 +01:00

11 lines
173 B
Plaintext

description "DHCP client - master service"
type respawn limit 5
target boot
after network
tty /dev/null
exec {
mkdir -p /var/db/dhcpcd
dhcpcd --inactive --nobackground
}