13 lines
231 B
Plaintext
13 lines
231 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# needed for "Save and Apply" to restart udpxy
|
||
|
uci -q batch <<-EOF >/dev/null
|
||
|
delete ucitrack.@udpxy[-1]
|
||
|
add ucitrack udpxy
|
||
|
set ucitrack.@udpxy[-1].init="udpxy"
|
||
|
commit ucitrack
|
||
|
EOF
|
||
|
|
||
|
rm -f /tmp/luci-indexcache
|
||
|
exit 0
|