summaryrefslogtreecommitdiff
path: root/reconfigure/items/fstab.py
diff options
context:
space:
mode:
authorAndrew Shadura <andrew@shadura.me>2015-08-20 15:58:26 +0200
committerAndrew Shadura <andrew@shadura.me>2015-08-20 15:58:26 +0200
commitff1408420159488a106492ccd11dd234967029b6 (patch)
tree473420cee1c5229a427ec4cafead1aa6c0a26800 /reconfigure/items/fstab.py
Imported Upstream version 0.1.29
Diffstat (limited to 'reconfigure/items/fstab.py')
-rw-r--r--reconfigure/items/fstab.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/reconfigure/items/fstab.py b/reconfigure/items/fstab.py
new file mode 100644
index 0000000..81b8060
--- /dev/null
+++ b/reconfigure/items/fstab.py
@@ -0,0 +1,26 @@
+from reconfigure.nodes import Node, PropertyNode
+from reconfigure.items.bound import BoundData
+
+
+class FSTabData (BoundData):
+ pass
+
+
+class FilesystemData (BoundData):
+ fields = ['device', 'mountpoint', 'type', 'options', 'freq', 'passno']
+
+ def template(self):
+ return Node('line', children=[
+ Node('token', children=[PropertyNode('value', 'none')]),
+ Node('token', children=[PropertyNode('value', 'none')]),
+ Node('token', children=[PropertyNode('value', 'auto')]),
+ Node('token', children=[PropertyNode('value', 'none')]),
+ Node('token', children=[PropertyNode('value', '0')]),
+ Node('token', children=[PropertyNode('value', '0')]),
+ ])
+
+
+FSTabData.bind_collection('filesystems', item_class=FilesystemData)
+for i in range(0, len(FilesystemData.fields)):
+ path = lambda i: lambda x: x.children[i]
+ FilesystemData.bind_property('value', FilesystemData.fields[i], path=path(i))