mirror of https://github.com/hak5/openwrt.git
17 lines
166 B
Plaintext
17 lines
166 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
# Copyright (C) 2006 OpenWrt.org
|
||
|
|
||
|
START=50
|
||
|
|
||
|
boot() {
|
||
|
/usr/lib/qos/generate.sh firewall | sh
|
||
|
}
|
||
|
|
||
|
start() {
|
||
|
qos-start
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
qos-stop
|
||
|
}
|