4 (c) 2008 Yanira <forum-2008@email.de>
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
10 http://www.apache.org/licenses/LICENSE-2.0
18 m = Map("hd-idle", translate("hd-idle"), translate("hd-idle is a utility program for spinning-down external disks after a period of idle time."))
20 s = m:section(TypedSection, "hd-idle", translate("Settings"))
23 s:option(Flag, "enabled", translate("enable"))
25 disk = s:option(Value, "disk", translate("Disk"))
27 for dev in nixio.fs.glob("/dev/[sh]d[a-z]") do
28 disk:value(nixio.fs.basename(dev))
31 s:option(Value, "idle_time_interval", translate("Idle-Time")).default = 10
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")
39 s:option(Flag, "enable_debug", translate("Enable debug"))