* luci/lib/sys: fixes for sys.init api
authorJo-Philipp Wich <jow@openwrt.org>
Fri, 3 Oct 2008 17:33:04 +0000 (17:33 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Fri, 3 Oct 2008 17:33:04 +0000 (17:33 +0000)
libs/sys/luasrc/sys.lua

index ec35e55..566e815 100644 (file)
@@ -561,7 +561,7 @@ end
 -- @return             Numeric index value
 function init.index(name)
        if luci.fs.access(init.dir..name) then
-               return call("source "..init.dir..name.." && exit $START")
+               return call("source "..init.dir..name.."; exit $START")
        end
 end
 
@@ -570,7 +570,7 @@ end
 -- @return             Boolean indicating success
 function init.enable(name)
        if luci.fs.access(init.dir..name) then
-               return ( call(init.dir..name.." enable") == 0 )
+               return ( call(init.dir..name.." enable") == 1 )
        end
 end