14 lines
233 B
Bash
Executable File
14 lines
233 B
Bash
Executable File
#!/bin/sh
|
|
|
|
[ -f "/etc/config/ucitrack" ] && {
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@airplay2[-1]
|
|
add ucitrack airplay2
|
|
set ucitrack.@airplay2[-1].init=airplay2
|
|
commit ucitrack
|
|
EOF
|
|
}
|
|
|
|
rm -rf /tmp/luci-indexcache*
|
|
exit 0
|