diff options
Diffstat (limited to 'applications/luci-app-udpxy/root/etc')
-rw-r--r-- | applications/luci-app-udpxy/root/etc/uci-defaults/luci-udpxy | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/applications/luci-app-udpxy/root/etc/uci-defaults/luci-udpxy b/applications/luci-app-udpxy/root/etc/uci-defaults/luci-udpxy new file mode 100644 index 000000000..e93c07880 --- /dev/null +++ b/applications/luci-app-udpxy/root/etc/uci-defaults/luci-udpxy @@ -0,0 +1,12 @@ +#!/bin/sh + +# needed for "Save and Apply" to restart udpxy +uci -q batch <<-EOF >/dev/null + delete ucitrack.@udpxy[-1] + add ucitrack udpxy + set ucitrack.@udpxy[-1].init="udpxy" + commit ucitrack +EOF + +rm -f /tmp/luci-indexcache +exit 0 |