b59df829f779fcc91bbe75c35bac838e180b4869
[project/luci.git] / applications / luci-hd_idle / luasrc / model / cbi / hd_idle.lua
1 --[[
2
3 LuCI hd-idle
4 (c) 2008 Yanira <forum-2008@email.de>
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10         http://www.apache.org/licenses/LICENSE-2.0
11
12 $Id$
13
14 ]]--
15
16 require("luci.fs")
17
18 m = Map("hd-idle", translate("hd_idle"), translate("hd_idle_desc"))
19
20 s = m:section(TypedSection, "hd-idle", translate("settings"))
21 s.anonymous = true
22
23 s:option(Flag, "enabled", translate("enable", "Enable"))
24
25 disk = s:option(Value, "disk", translate("disk"))
26 disk.rmempty = true
27 for _, dev in ipairs(luci.fs.glob("/dev/[sh]d[a-z]")) do
28         disk:value(luci.fs.basename(dev))
29 end
30
31 s:option(Value, "idle_time_interval", translate("idle_time_interval")).default = 10
32 s.rmempty = true
33 unit = s:option(ListValue, "idle_time_unit", translate("idle_time_unit"))
34 unit.default = "minutes"
35 unit:value("minutes", "min")
36 unit:value("hours", "h")
37 unit.rmempty = true
38
39 s:option(Flag, "enable_debug", translate("enable_debug"))
40
41 return m