blob: be9412bac8f2e3b5ba540ebdc931808dc76c7467 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# needed for "Save and Apply" to restart shairport
uci -q batch <<-EOF >/dev/null
delete ucitrack.@shairport[-1]
add ucitrack shairport
set ucitrack.@shairport[-1].init="shairport"
commit ucitrack
EOF
rm -f /tmp/luci-indexcache
exit 0
|