18 lines
194 B
Bash
Executable file
18 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
|
|
}
|