mirror of
https://github.com/pygos/init-scripts.git
synced 2024-11-14 00:47:10 +01:00
David Oberhollenzer
244f4bbe7a
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>
10 lines
173 B
Text
10 lines
173 B
Text
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
|
|
}
|