summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-statistics/root/etc/uci-defaults
diff options
context:
space:
mode:
authorHannu Nyman <hannu.nyman@iki.fi>2015-08-30 14:00:29 +0300
committerHannu Nyman <hannu.nyman@iki.fi>2015-08-30 14:00:29 +0300
commit0d5070c51089deb448476f1abadcea8e185eaf9b (patch)
treefe4c764382857b067dc1022f131ddd38550166c2 /applications/luci-app-statistics/root/etc/uci-defaults
parent478bb37a456e79f3541e0f8fbd672fe39aeb3de6 (diff)
statistics: remove references to Lucid from scripts
Both init.d and uci-defaults scripts included in luci-app-statistics still contained stuff related to lucid, which package was removed by https://github.com/openwrt/luci/commit/91b97bc9f625d09431dc1c753209a037d7c42fbc Changes to scripts: * init.d: lucid reference removed, /var/etc creation moved earlier (before first possible use) * uci-defaults: lucid parameters & restart removed (but busybox httpd stuff was left intact, although it might be unnecessary) Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Diffstat (limited to 'applications/luci-app-statistics/root/etc/uci-defaults')
-rwxr-xr-xapplications/luci-app-statistics/root/etc/uci-defaults/luci-statistics20
1 files changed, 0 insertions, 20 deletions
diff --git a/applications/luci-app-statistics/root/etc/uci-defaults/luci-statistics b/applications/luci-app-statistics/root/etc/uci-defaults/luci-statistics
index e94a8637c8..28e35298a2 100755
--- a/applications/luci-app-statistics/root/etc/uci-defaults/luci-statistics
+++ b/applications/luci-app-statistics/root/etc/uci-defaults/luci-statistics
@@ -8,29 +8,9 @@ uci -q batch <<-EOF >/dev/null
commit ucitrack
EOF
-# register LuCId virtual path handler
-[ -f /etc/config/lucid ] && \
-uci -q batch <<-EOF >/dev/null
- delete lucid.statistics
-
- set lucid.statistics=DirectoryPublisher
- set lucid.statistics.name='RRDTool Image Cache'
- set lucid.statistics.physical=/tmp/rrdimg
- set lucid.statistics.virtual=/rrdimg
- set lucid.statistics.domain=''
-
- add_list lucid.http.publisher=statistics
- add_list lucid.https.publisher=statistics
-
- commit lucid
-EOF
-
# symlink for busybox httpd
[ -x /usr/sbin/httpd ] && [ ! -h /www/rrdimg ] && \
ln -s /tmp/rrdimg /www/rrdimg
-# restart LuCId service
-[ -x /etc/init.d/lucid ] && /etc/init.d/lucid enabled && /etc/init.d/lucid restart
-
rm -f /tmp/luci-indexcache
exit 0