mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-31 05:54:26 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			244 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			244 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh /etc/rc.common
 | |
| 
 | |
| START=35
 | |
| STOP=85
 | |
| USE_PROCD=1
 | |
| 
 | |
| start_service() {
 | |
| 	procd_open_instance
 | |
| 	procd_set_param command /usr/sbin/odhcpd
 | |
| 	procd_set_param respawn
 | |
| 	procd_close_instance
 | |
| }
 | |
| 
 | |
| service_triggers()
 | |
| {
 | |
| 	procd_add_reload_trigger "dhcp"
 | |
| }
 | |
| 
 |