Fixed some UCI transition fallout
authorSteven Barth <steven@midlink.org>
Tue, 2 Sep 2008 14:50:00 +0000 (14:50 +0000)
committerSteven Barth <steven@midlink.org>
Tue, 2 Sep 2008 14:50:00 +0000 (14:50 +0000)
libs/httpd/host/runluci
libs/sgi-webuci/root/usr/lib/boa/luci.lua

index f150cae8d637de42b28cf9ff32ccedc7f07099f4..3c7ab070d2fb785c45a78d39b22bb21640a60a60 100755 (executable)
@@ -17,11 +17,12 @@ vhost   = luci.httpd.server.VHost()
 
 server:set_default_vhost(vhost)
 
-if pcall(require, "uci2") and pcall(require, "luci.model.uci") then
-       luci.model.uci.cursor = function(config, save)
-               return uci2.cursor(config or SYSROOT .. "/etc/config", save or SYSROOT .. "/tmp/.uci")
+pcall(function()
+       require "uci"
+       require "luci.model.uci".cursor = function(config, save)
+               return uci.cursor(config or SYSROOT .. "/etc/config", save or SYSROOT .. "/tmp/.uci")
        end
-end
+end)
 
 require("luci.sys")
 luci.sys.user.checkpasswd = function() return true end
index 387d577d6067fa6ef9e4545b808bce383eda74d3..6cb019d16ad6e601b321ef5c590d966825414639 100644 (file)
@@ -25,7 +25,7 @@ function init(path)
        if (root ~= '/') then
                -- Entering dummy mode
                luci.model.uci.cursor = function(config, ...)
-                       return uci2.cursor(config or root .. "/etc/config", ...)
+                       return uci.cursor(config or root .. "/etc/config", ...)
                end
                
                luci.sys.hostname = function() return "" end