From: Jo-Philipp Wich Date: Fri, 27 Apr 2012 18:10:40 +0000 (+0000) Subject: protocols/6x4: fix install state detection with netifd X-Git-Tag: 0.11.0~696 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=cf8b8f874981a06d4dd41494ea3fb98157b60a3b protocols/6x4: fix install state detection with netifd --- diff --git a/protocols/6x4/luasrc/model/network/proto_6x4.lua b/protocols/6x4/luasrc/model/network/proto_6x4.lua index d4d72c828..b9fbf64ec 100644 --- a/protocols/6x4/luasrc/model/network/proto_6x4.lua +++ b/protocols/6x4/luasrc/model/network/proto_6x4.lua @@ -41,7 +41,8 @@ for _, p in ipairs({"6in4", "6to4"}) do end function proto.is_installed(self) - return nixio.fs.access("/lib/network/" .. p .. ".sh") + return nixio.fs.access("/lib/network/" .. p .. ".sh") or + nixio.fs.access("/lib/netifd/proto/" .. p .. ".sh") end function proto.is_floating(self)