mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-30 21:44:27 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			288 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			288 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh /etc/rc.common
 | |
| 
 | |
| START=80
 | |
| 
 | |
| USE_PROCD=1
 | |
| PROG=/sbin/blockd
 | |
| 
 | |
| service_triggers() {
 | |
| 	procd_add_reload_trigger "fstab"
 | |
| }
 | |
| 
 | |
| reload_service() {
 | |
| 	block autofs start
 | |
| }
 | |
| 
 | |
| start_service() {
 | |
| 	procd_open_instance
 | |
| 	procd_set_param command "$PROG"
 | |
| 	procd_set_param respawn
 | |
| 	procd_close_instance
 | |
| }
 |