diff options
| author | David Oberhollenzer <goliath@infraroot.at> | 2019-03-20 15:45:24 +0100 | 
|---|---|---|
| committer | David Oberhollenzer <goliath@infraroot.at> | 2019-03-20 20:52:55 +0100 | 
| commit | 244f4bbe7a03b8ce1f706e2481deaabcdf7c2b3c (patch) | |
| tree | 759725bb56f2d75a9b0ad70acb0aa7b899068a90 /services/dhcpcdmaster | |
| parent | 655daedb938b4e73b4a6c88bb2e13d652c0cccb5 (diff) | |
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>
Diffstat (limited to 'services/dhcpcdmaster')
| -rw-r--r-- | services/dhcpcdmaster | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/services/dhcpcdmaster b/services/dhcpcdmaster index 879497a..1bb0a3a 100644 --- a/services/dhcpcdmaster +++ b/services/dhcpcdmaster @@ -1,10 +1,10 @@  description "DHCP client - master service" -type wait +type respawn limit 5  target boot  after network  tty /dev/null  exec {  	mkdir -p /var/db/dhcpcd -	dhcpcd --inactive +	dhcpcd --inactive --nobackground  }  | 
