19 lines
194 B
Text
19 lines
194 B
Text
|
#!/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
|
||
|
}
|