summaryrefslogtreecommitdiffstats
path: root/rules/lvm2.in
diff options
context:
space:
mode:
authorRemy Bohmer <linux@bohmer.net>2010-05-29 22:58:29 +0200
committerRemy Bohmer <linux@bohmer.net>2010-06-02 21:09:28 +0200
commitd7ea2c2e52a9313af287a84fe18e0e70268d06a0 (patch)
tree291992166fbaf1774b9ce28f2f6ab4ee5c10a51f /rules/lvm2.in
parent38e3e06d6183dc9eb1504baf72df7caa0206ac28 (diff)
downloadptxdist-d7ea2c2e52a9313af287a84fe18e0e70268d06a0.tar.gz
ptxdist-d7ea2c2e52a9313af287a84fe18e0e70268d06a0.tar.xz
[lvm2] add new packet
Adds the Logical Volume Management package to ptxdist Signed-off-by: Bart vdr. Meulen <bartvdrmeulen@gmail.com> Signed-off-by: Remy Bohmer <linux@bohmer.net>
Diffstat (limited to 'rules/lvm2.in')
-rw-r--r--rules/lvm2.in41
1 files changed, 41 insertions, 0 deletions
diff --git a/rules/lvm2.in b/rules/lvm2.in
new file mode 100644
index 000000000..9ec6a569d
--- /dev/null
+++ b/rules/lvm2.in
@@ -0,0 +1,41 @@
+## SECTION=disk_and_file
+
+config LVM2
+ tristate
+ select READLINE
+ select NCURSES
+ prompt "lvm2"
+ help
+ LVM2 refers to a new userspace toolset that provide logical volume management
+ facilities on linux. It is reasonably backwards-compatible with the original
+ LVM toolset
+
+if LVM2
+
+config LVM2_STARTSCRIPT
+ bool
+ default y
+ prompt "install /etc/init.d/lvm2"
+
+config LVM2_DEVICE_UID
+ int
+ default 0
+ prompt "device node uid"
+ help
+ The effective UID of the device nodes create by LVM
+
+config LVM2_DEVICE_GID
+ int
+ default 107
+ prompt "device node gid"
+ help
+ The effective GID of the device nodes create by LVM
+
+config LVM2_DEVICE_MODE
+ string
+ default 0660
+ prompt "device node access mode"
+ help
+ The effective access mode of the device nodes create by LVM
+
+endif