dhcpcd.initd 389 B

1234567891011121314151617181920
  1. #!/usr/bin/openrc-run
  2. # Copyright 2007-2020 Gentoo Authors
  3. # Distributed under the terms of the GNU General Public License v2
  4. command=/usr/bin/dhcpcd
  5. #pidfile=/run/dhcpcd/pid
  6. supervisor="supervise-daemon"
  7. command_args_foreground="--nobackground"
  8. command_args=-q
  9. name="DHCP Client Daemon"
  10. depend()
  11. {
  12. provide net
  13. need localmount
  14. use logger network
  15. after bootmisc modules
  16. before dns
  17. }