summaryrefslogtreecommitdiff
path: root/vmdb/plugins/lvm2.mdwn
diff options
context:
space:
mode:
Diffstat (limited to 'vmdb/plugins/lvm2.mdwn')
-rw-r--r--vmdb/plugins/lvm2.mdwn42
1 files changed, 0 insertions, 42 deletions
diff --git a/vmdb/plugins/lvm2.mdwn b/vmdb/plugins/lvm2.mdwn
deleted file mode 100644
index 76f5892..0000000
--- a/vmdb/plugins/lvm2.mdwn
+++ /dev/null
@@ -1,42 +0,0 @@
-Step: `vgcreate`
------------------------------------------------------------------------------
-
-Create an LVM2 volume group (VG), and also initialise the physical
-volumes for it.
-
-
-Step keys:
-
-* `vgcreate` — REQUIRED; value is the tag for the volume group.
- This gets initialised with `vgcreate`.
-
-* `physical` — REQUIRED; list of tags for block devices
- (partitions) to use as physical volumes. These get initialised with
- `pvcreate`.
-
-Example (in the .vmdb file):
-
- - vgcreate: rootvg
- physical:
- - my_partition
- - other_partition
-
-
-Step: `lvcreate`
------------------------------------------------------------------------------
-
-Create an LVM2 logical volume (LV) in an existing volume group.
-
-Step keys:
-
-* `lvcreate` — REQUIRED; value is the tag for the volume group.
-
-* `name` — REQUIRED; tag for the new LV block device.
-
-* `size` — REQUIRED; size of the new LV.
-
-Example (in the .vmdb file):
-
- - lvcreate: rootvg
- name: rootfs
- size: 1G