From 100b544f3be0ded52e03ff7c62001e8395d02045 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Thu, 31 May 2012 16:16:32 +0000 Subject: proto: fix feature detection of installed protocol handlers --- protocols/ppp/luasrc/model/network/proto_ppp.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'protocols/ppp/luasrc') diff --git a/protocols/ppp/luasrc/model/network/proto_ppp.lua b/protocols/ppp/luasrc/model/network/proto_ppp.lua index 2988385b22..b00c9f0a21 100644 --- a/protocols/ppp/luasrc/model/network/proto_ppp.lua +++ b/protocols/ppp/luasrc/model/network/proto_ppp.lua @@ -55,9 +55,7 @@ for _, p in ipairs({"ppp", "pptp", "pppoe", "pppoa", "3g"}) do end function proto.is_installed(self) - if nixio.fs.access("/lib/network/" .. p .. ".sh") then - return true - elseif p == "pppoa" then + if p == "pppoa" then return (nixio.fs.glob("/usr/lib/pppd/*/pppoatm.so")() ~= nil) elseif p == "pppoe" then return (nixio.fs.glob("/usr/lib/pppd/*/rp-pppoe.so")() ~= nil) -- cgit v1.2.3