You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
391 B
28 lines
391 B
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
START=50
|
|
USE_PROCD=1
|
|
|
|
validate_qos_section()
|
|
{
|
|
uci_validate_section qos interface "${1}" \
|
|
'enabled:bool' \
|
|
'upload:uinteger' \
|
|
'download:uinteger'
|
|
}
|
|
|
|
service_triggers()
|
|
{
|
|
procd_add_reload_trigger "qos"
|
|
procd_add_validation validate_qos_section
|
|
qos-start
|
|
}
|
|
|
|
start_service() {
|
|
qos-start
|
|
}
|
|
|
|
reload_service() {
|
|
qos-start
|
|
}
|
|
|