blob: e9636f9a2801490f25760704188235272be71506 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
uci -q batch <<-EOF >/dev/null
delete ucitrack.@upnpd[-1]
add ucitrack upnpd
set ucitrack.@upnpd[-1].init=miniupnpd
commit ucitrack
EOF
rm -f /tmp/luci-indexcache
exit 0
|