blob: 4a771540da633f0bbb84ba9631c027a165c7cefc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
local SYSROOT = os.getenv("LUCI_SYSROOT")
-- override uci access
local uci_core = require "uci"
local uci_model = require "luci.model.uci"
uci_model.cursor = function(config, save)
return uci_core.cursor(config or SYSROOT .. "/etc/config", save or SYSROOT .. "/tmp/.uci")
end
uci_model.cursor_state = function()
return uci_core.cursor(SYSROOT .. "/etc/config", SYSROOT .. "/var/state")
end
-- override uvl access
local uvl_model = require "luci.uvl"
local uvl_init = uvl_model.UVL.__init__
uvl_model.UVL.__init__ = function(self, schemedir)
uvl_init(self, schemedir or SYSROOT .. "/lib/uci/schema")
end
-- allow any password in local sdk
local sys = require "luci.sys"
sys.user.checkpasswd = function() return true end
|