mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-30 21:44:27 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			263 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			263 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh /etc/rc.common
 | |
| START=40
 | |
| STOP=90
 | |
| 
 | |
| start() {
 | |
| 	setup_switch() { return 0; }
 | |
| 
 | |
| 	include /lib/network
 | |
| 	setup_switch
 | |
| 
 | |
| 	ubus call network reload
 | |
| 
 | |
| 	grep -qs config /etc/config/wireless && {
 | |
| 		/sbin/wifi up
 | |
| 	}
 | |
| }
 | |
| 
 | |
| restart() {
 | |
| 	start
 | |
| }
 | |
| 
 | |
| stop() {
 | |
| 	/sbin/ifdown -a
 | |
| }
 |