From 70ded13045e6b882859eeb0acb928eb8cacefd28 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Fri, 2 Jan 2009 21:33:10 +0000 Subject: Use luci.fs.access instead of luci.fs.isfile where applicable --- .../luasrc/controller/luci_statistics/luci_statistics.lua | 2 +- .../luci-statistics/luasrc/view/admin_statistics/networkplugins.htm | 2 +- .../luci-statistics/luasrc/view/admin_statistics/outputplugins.htm | 2 +- .../luci-statistics/luasrc/view/admin_statistics/systemplugins.htm | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'applications/luci-statistics/luasrc') diff --git a/applications/luci-statistics/luasrc/controller/luci_statistics/luci_statistics.lua b/applications/luci-statistics/luasrc/controller/luci_statistics/luci_statistics.lua index 0aa66362bd..940d2265c7 100644 --- a/applications/luci-statistics/luasrc/controller/luci_statistics/luci_statistics.lua +++ b/applications/luci-statistics/luasrc/controller/luci_statistics/luci_statistics.lua @@ -32,7 +32,7 @@ function index() -- override entry(): check for existance .so where is derived from the called path function _entry( path, ... ) local file = path[5] or path[4] - if luci.fs.isfile( "/usr/lib/collectd/" .. file .. ".so" ) then + if luci.fs.access( "/usr/lib/collectd/" .. file .. ".so" ) then entry( path, ... ) end end diff --git a/applications/luci-statistics/luasrc/view/admin_statistics/networkplugins.htm b/applications/luci-statistics/luasrc/view/admin_statistics/networkplugins.htm index e29d97c9e3..54ba2b0e26 100644 --- a/applications/luci-statistics/luasrc/view/admin_statistics/networkplugins.htm +++ b/applications/luci-statistics/luasrc/view/admin_statistics/networkplugins.htm @@ -22,7 +22,7 @@ about open tcp connections, interface traffic, iptables rules etc.%>

<%:stat_networkplugins_installed Installed network plugins:%>

    <% for plugin, desc in pairs(plugins) do %> - <% if luci.fs.isfile("/usr/lib/collectd/" .. plugin .. ".so") then %> + <% if luci.fs.access("/usr/lib/collectd/" .. plugin .. ".so") then %>
  • <%=desc%>
  • <% end %> <% end %> diff --git a/applications/luci-statistics/luasrc/view/admin_statistics/outputplugins.htm b/applications/luci-statistics/luasrc/view/admin_statistics/outputplugins.htm index d230109cc0..e79e2f49f5 100644 --- a/applications/luci-statistics/luasrc/view/admin_statistics/outputplugins.htm +++ b/applications/luci-statistics/luasrc/view/admin_statistics/outputplugins.htm @@ -23,7 +23,7 @@ and to transmit the data over the network to other collectd instances.%>

    <%:stat_outputplugins_installed Installed output plugins:%>

      <% for plugin, desc in pairs(plugins) do %> - <% if luci.fs.isfile("/usr/lib/collectd/" .. plugin .. ".so") then %> + <% if luci.fs.access("/usr/lib/collectd/" .. plugin .. ".so") then %>
    • <%=desc%>
    • <% end %> <% end %> diff --git a/applications/luci-statistics/luasrc/view/admin_statistics/systemplugins.htm b/applications/luci-statistics/luasrc/view/admin_statistics/systemplugins.htm index bb63228b67..0c1b2b52bb 100644 --- a/applications/luci-statistics/luasrc/view/admin_statistics/systemplugins.htm +++ b/applications/luci-statistics/luasrc/view/admin_statistics/systemplugins.htm @@ -19,7 +19,7 @@ $Id$

      <%:stat_systemplugins_desc System plugins collecting values about system state and ressource usage on the device.:%>

        <% for plugin, desc in pairs(plugins) do %> - <% if luci.fs.isfile("/usr/lib/collectd/" .. plugin .. ".so") then %> + <% if luci.fs.access("/usr/lib/collectd/" .. plugin .. ".so") then %>
      • <%=desc%>
      • <% end %> <% end %> -- cgit v1.2.3