2015-01-16 22:38:38 +00:00
|
|
|
-- Copyright 2008 Yanira <forum-2008@email.de>
|
|
|
|
-- Licensed to the public under the Apache License 2.0.
|
2008-10-02 13:52:28 +00:00
|
|
|
|
|
|
|
module("luci.controller.hd_idle", package.seeall)
|
|
|
|
|
|
|
|
function index()
|
2011-08-12 13:16:27 +00:00
|
|
|
if not nixio.fs.access("/etc/config/hd-idle") then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local page
|
|
|
|
|
2017-04-30 19:42:55 +00:00
|
|
|
page = entry({"admin", "services", "hd_idle"}, cbi("hd_idle"), _("HDD Idle"), 60)
|
2011-08-12 13:16:27 +00:00
|
|
|
page.dependent = true
|
2008-10-02 13:52:28 +00:00
|
|
|
end
|