module("luci.controller.qbittorrent", package.seeall) function index() entry({"admin", "nas"}, firstchild(), _("NAS") , 45).dependent = false if not nixio.fs.access("/etc/config/qbittorrent") then return end local page = entry({"admin", "nas", "qbittorrent"}, cbi("qbittorrent"), _("qBittorrent")) page.order = 10 page.dependent = true page.acl_depends = { "luci-app-qbittorrent" } entry({"admin","nas","qbittorrent","status"},call("act_status")).leaf=true end function act_status() local e={} e.running=luci.sys.call("pgrep qbittorrent-nox >/dev/null")==0 luci.http.prepare_content("application/json") luci.http.write_json(e) end