modules/freifunk: Show remote update in menu only when /usr/sbin/remote-update from the package remote-update is present (#160)
This commit is contained in:
parent
707701df74
commit
0c281f4e86
1 changed files with 3 additions and 4 deletions
|
@ -9,16 +9,15 @@ You may obtain a copy of the License at
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
$Id: freifunk.lua 4649 2009-05-26 18:30:00Z jow $
|
|
||||||
]]--
|
]]--
|
||||||
|
|
||||||
local nixio = require "nixio"
|
|
||||||
|
|
||||||
module("luci.controller.freifunk.remote_update", package.seeall)
|
module("luci.controller.freifunk.remote_update", package.seeall)
|
||||||
|
|
||||||
function index()
|
function index()
|
||||||
local i18n = luci.i18n.translate
|
local i18n = luci.i18n.translate
|
||||||
|
if not nixio.fs.access("/usr/sbin/remote-update") then
|
||||||
|
return
|
||||||
|
end
|
||||||
entry({"admin", "system", "remote_update"}, call("act_remote_update"),
|
entry({"admin", "system", "remote_update"}, call("act_remote_update"),
|
||||||
i18n("Freifunk Remote Update"), 90)
|
i18n("Freifunk Remote Update"), 90)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue