12 lines
181 B
Text
12 lines
181 B
Text
|
#!/bin/sh
|
||
|
|
||
|
uci -q batch <<-EOF >/dev/null
|
||
|
delete ucitrack.@upnpd[-1]
|
||
|
add ucitrack upnpd
|
||
|
set ucitrack.@upnpd[-1]=miniupnpd
|
||
|
commit ucitrack
|
||
|
EOF
|
||
|
|
||
|
rm -f /tmp/luci-indexcache
|
||
|
exit 0
|