mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-15 03:51:51 +00:00
12 lines
235 B
Bash
Executable file
12 lines
235 B
Bash
Executable file
#!/bin/sh
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@sqm[-1]
|
|
add ucitrack sqm
|
|
set ucitrack.@sqm[-1].init=sqm
|
|
del_list ucitrack.@firewall[0].affects=sqm
|
|
add_list ucitrack.@firewall[0].affects=sqm
|
|
commit ucitrack
|
|
EOF
|
|
|
|
exit 0
|