summaryrefslogtreecommitdiff
path: root/vmdb/plugins/partition.mdwn
diff options
context:
space:
mode:
Diffstat (limited to 'vmdb/plugins/partition.mdwn')
-rw-r--r--vmdb/plugins/partition.mdwn57
1 files changed, 0 insertions, 57 deletions
diff --git a/vmdb/plugins/partition.mdwn b/vmdb/plugins/partition.mdwn
deleted file mode 100644
index cc325d4..0000000
--- a/vmdb/plugins/partition.mdwn
+++ /dev/null
@@ -1,57 +0,0 @@
-Step: `mklabel`
------------------------------------------------------------------------------
-
-Create a partition table on a block device.
-
-Step keys:
-
-* `mklabel` — REQUIRED; type of partition table, MUST be one of
- `msdos` and `gpt`.
-
-* `device` — REQUIRED; tag for the block device.
-
-Example (in the .vmdb file):
-
- - mklabel: "{{ output }}"
- size: 4G
-
-Step: `mkpart`
------------------------------------------------------------------------------
-
-Create a partition.
-
-Step keys:
-
-* `mkpart` — REQUIRED; type of partition to create: use
- `primary` (but any value acceped by `parted` is OK).
-
-* `device` — REQUIRED; filename of block device where to create
- partition.
-
-* `start` — REQUIRED; where does the partition start?
-
-* `end` — REQUIRED; where does the partition end?
-
-* `tag` — REQUIRED; tag for the new partition.
-
-Example (in the .vmdb file):
-
- - mkpart: primary
- device: "{{ output }}"
- start: 0%
- end: 100%
- tag: root
-
-Step: `kpartx`
------------------------------------------------------------------------------
-
-Create loop devices for partitions in an image file. Not needed when
-installing to a real block device, instead of an image file.
-
-Step keys:
-
-* `kpartx` — REQUIRED; filename of block device with partitions.
-
-Example (in the .vmdb file):
-
- - kpartx: "{{ output }}"