19 lines
		
	
	
		
			194 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			194 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh /etc/rc.common
 | |
| # Copyright (C) 2006 OpenWrt.org
 | |
| 
 | |
| boot() {
 | |
| 	/usr/lib/qos.sh firewall | sh
 | |
| }
 | |
| 
 | |
| start() {
 | |
| #	FIXME: after init script migration
 | |
| #	qos-start
 | |
| #
 | |
| 
 | |
| 	boot
 | |
| }
 | |
| 
 | |
| stop() {
 | |
| 	qos-stop
 | |
| }
 | 
