* Added DHCP page
[project/luci.git] / src / ffluci / model / cbi / admin_system / fstab.lua
1 m = Map("fstab", "Einhängepunkte")
2
3 mount = m:section(TypedSection, "mount", "Einhängepunkte")
4 mount.anonymous = true
5 mount.addremove = true
6
7 mount:option(Flag, "enabled", "aktivieren")
8 mount:option(Value, "device", "Gerät")
9 mount:option(Value, "target", "Einhängepunkt")
10 mount:option(Value, "fstype", "Dateisystem")
11 mount:option(Value, "options", "Optionen")
12
13
14 swap = m:section(TypedSection, "swap", "SWAP")
15 swap.anonymous = true
16 swap.addremove = true
17
18 swap:option(Flag, "enabled", "aktivieren")
19 swap:option(Value, "device", "Gerät")
20
21 return m