mirror of
https://github.com/novatiq/packages.git
synced 2026-07-30 23:33:06 +01:00
15 lines
349 B
Bash
Executable File
15 lines
349 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# delete existing mwan3 ucitrack entry and add new entry
|
|
uci -q batch <<-EOF >/dev/null
|
|
del ucitrack.@mwan3[-1]
|
|
add ucitrack mwan3
|
|
set ucitrack.@mwan3[-1].exec="/etc/init.d/mwan3 restart"
|
|
commit ucitrack
|
|
EOF
|
|
|
|
# make controller file addition take effect without system restart
|
|
rm -rf /tmp/luci-indexcache /tmp/luci-modulecache
|
|
|
|
exit 0
|