applications/luci-splash: fix init script enabling on build host
This commit is contained in:
parent
788b55d9f8
commit
9e09f62fc6
1 changed files with 8 additions and 4 deletions
|
@ -9,10 +9,6 @@ LIMIT_UP=0
|
||||||
IPT_REPLAY=/var/run/luci_splash.iptlog
|
IPT_REPLAY=/var/run/luci_splash.iptlog
|
||||||
LOCK=/var/run/luci_splash.lock
|
LOCK=/var/run/luci_splash.lock
|
||||||
|
|
||||||
include /lib/network
|
|
||||||
scan_interfaces
|
|
||||||
config_load luci_splash
|
|
||||||
|
|
||||||
silent() {
|
silent() {
|
||||||
"$@" 2>/dev/null
|
"$@" 2>/dev/null
|
||||||
}
|
}
|
||||||
|
@ -167,6 +163,10 @@ EOF
|
||||||
start() {
|
start() {
|
||||||
lock -w $LOCK && lock $LOCK
|
lock -w $LOCK && lock $LOCK
|
||||||
|
|
||||||
|
include /lib/network
|
||||||
|
scan_interfaces
|
||||||
|
config_load luci_splash
|
||||||
|
|
||||||
### Find QoS limits
|
### Find QoS limits
|
||||||
config_get LIMIT_UP general limit_up
|
config_get LIMIT_UP general limit_up
|
||||||
config_get LIMIT_DOWN general limit_down
|
config_get LIMIT_DOWN general limit_down
|
||||||
|
@ -240,6 +240,10 @@ start() {
|
||||||
stop() {
|
stop() {
|
||||||
lock -w $LOCK && lock $LOCK
|
lock -w $LOCK && lock $LOCK
|
||||||
|
|
||||||
|
include /lib/network
|
||||||
|
scan_interfaces
|
||||||
|
config_load luci_splash
|
||||||
|
|
||||||
### Clear interface rules
|
### Clear interface rules
|
||||||
config_foreach iface_del iface
|
config_foreach iface_del iface
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue