diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2014-10-30 12:40:39 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2014-10-30 12:40:39 +0100 |
commit | 1b6e4e4304ffa884bf1949b8213c422a3f4fd22c (patch) | |
tree | 884ca726c34d9a463a23d4085efc9325b5807753 /applications/luci-shairport/root | |
parent | 5189dda49f8764898e3f9289b73d8b347d2fe1e7 (diff) | |
parent | 8414e7142259519ea006bf4081288bc742ed8131 (diff) |
Merge pull request #242 from openwrt-es/luci-shairport
applications/luci-shairport: add new package.
Diffstat (limited to 'applications/luci-shairport/root')
-rw-r--r-- | applications/luci-shairport/root/etc/uci-defaults/luci-shairport | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/applications/luci-shairport/root/etc/uci-defaults/luci-shairport b/applications/luci-shairport/root/etc/uci-defaults/luci-shairport new file mode 100644 index 0000000000..be9412bac8 --- /dev/null +++ b/applications/luci-shairport/root/etc/uci-defaults/luci-shairport @@ -0,0 +1,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 |