blob: 87e18fb28dc25cf9d33227ae5ab6d4fe2aa9d794 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  | 
#!/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
}
  |