#!/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
|