lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

dhcpcd.init (375B)


      1 #!/bin/sh /etc/rc.common
      2 #
      3 # Copyright (C) 2014 OpenWrt.org
      4 #
      5 # This is free software, licensed under the GNU General Public License v2.
      6 # See /LICENSE for more information.
      7 #
      8 
      9 START=30
     10 STOP=85
     11 USE_PROCD=1
     12 
     13 start_service()
     14 {
     15 	procd_open_instance
     16 	procd_set_param command /sbin/dhcpcd -B
     17 	procd_set_param respawn
     18 	procd_close_instance
     19 }
     20 
     21 reload_service()
     22 {
     23 	/sbin/dhcpcd -n
     24 }