diff options
author | Christian Schoenebeck <christian.schoenebeck@gmail.com> | 2015-05-08 20:44:13 +0200 |
---|---|---|
committer | Christian Schoenebeck <christian.schoenebeck@gmail.com> | 2015-05-08 20:44:13 +0200 |
commit | cc99288242be3e0fe60b61b83bebe272222560c5 (patch) | |
tree | 306cd8d6d12c6c8b7823b0ca52906258a61bb62b /applications/luci-app-radicale/root | |
parent | a7083780de7c9a52feea80b2d6cee6781e3193f3 (diff) | |
parent | e6804f0a9313d5aa207994a4e3a365d5373c8abf (diff) |
Merge pull request #376 from chris5560/master
luci-app-radicale: New app to support Radicale CalDAV/CardDAV server
Diffstat (limited to 'applications/luci-app-radicale/root')
-rwxr-xr-x | applications/luci-app-radicale/root/etc/uci-defaults/luci-radicale | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/applications/luci-app-radicale/root/etc/uci-defaults/luci-radicale b/applications/luci-app-radicale/root/etc/uci-defaults/luci-radicale new file mode 100755 index 0000000000..333ca65f45 --- /dev/null +++ b/applications/luci-app-radicale/root/etc/uci-defaults/luci-radicale @@ -0,0 +1,12 @@ +#!/bin/sh + +# no longer needed for "Save and Apply" to restart radicale +# luci-app-radicale calls /etc/init.d/radicale reload +uci -q batch <<-EOF >/dev/null + delete ucitrack.@radicale[-1] + commit ucitrack +EOF + +rm -f /tmp/luci-indexcache + +exit 0 |