summaryrefslogtreecommitdiffhomepage
path: root/libs/web/luasrc
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-09-05 23:24:39 +0000
committerSteven Barth <steven@midlink.org>2008-09-05 23:24:39 +0000
commit40d4e839eff49bc2390537d465c4543105e95f59 (patch)
treedbcfbe0044688a5817ad161ee0c470f5f77da63f /libs/web/luasrc
parent71d3b7c194a8612b40dea82f6c430b4feb3739cd (diff)
Added bytecodecache
Diffstat (limited to 'libs/web/luasrc')
-rw-r--r--libs/web/luasrc/cacheloader.lua23
1 files changed, 23 insertions, 0 deletions
diff --git a/libs/web/luasrc/cacheloader.lua b/libs/web/luasrc/cacheloader.lua
new file mode 100644
index 0000000000..942c4b7b48
--- /dev/null
+++ b/libs/web/luasrc/cacheloader.lua
@@ -0,0 +1,23 @@
+--[[
+LuCI - Lua Configuration Interface
+
+Copyright 2008 Steven Barth <steven@midlink.org>
+Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+$Id$
+]]--
+
+local config = require "luci.config"
+local ccache = require "luci.ccache"
+
+module "luci.cacheloader"
+
+if config.ccache and config.ccache.enable == "1" then
+ ccache.cache_ondemand()
+end \ No newline at end of file