protocols/ppp: fix install state detection with netifd
This commit is contained in:
parent
cf8b8f8749
commit
62ec28f0be
1 changed files with 11 additions and 1 deletions
|
@ -55,7 +55,17 @@ for _, p in ipairs({"ppp", "pptp", "pppoe", "pppoa", "3g"}) do
|
||||||
end
|
end
|
||||||
|
|
||||||
function proto.is_installed(self)
|
function proto.is_installed(self)
|
||||||
return nixio.fs.access("/lib/network/" .. p .. ".sh")
|
if nixio.fs.access("/lib/network/" .. p .. ".sh") then
|
||||||
|
return true
|
||||||
|
elseif 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)
|
||||||
|
elseif p == "3g" then
|
||||||
|
return nixio.fs.access("/lib/netifd/proto/3g.sh")
|
||||||
|
else
|
||||||
|
return nixio.fs.access("/lib/netifd/proto/ppp.sh")
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function proto.is_floating(self)
|
function proto.is_floating(self)
|
||||||
|
|
Loading…
Reference in a new issue