Moved over here from the packages repository. Signed-off-by: Dan Luedtke <mail@danrl.com>
14 lines
282 B
Bash
Executable file
14 lines
282 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# replace existing mwan ucitrack entry
|
|
uci -q batch <<-EOF >/dev/null
|
|
del ucitrack.@mwan3[-1]
|
|
add ucitrack mwan3
|
|
set ucitrack.@mwan3[-1].exec="/usr/sbin/mwan3 restart"
|
|
commit ucitrack
|
|
EOF
|
|
|
|
# remove LuCI cache
|
|
rm -rf /tmp/luci-indexcache /tmp/luci-modulecache
|
|
|
|
exit 0
|