summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2020-03-21 08:40:35 +0200
committerLars Wirzenius <liw@liw.fi>2020-03-21 08:40:35 +0200
commite6e82e9957c26f582b0432bc5bcbb6ec2440bedd (patch)
treee76acc1c2b4d15a5cce2468b106e1dd928d26df6
parent840b6a5f074a6c6d32119b4f654e11ca0f8750e7 (diff)
downloadvmdb2-e6e82e9957c26f582b0432bc5bcbb6ec2440bedd.tar.gz
Change: don't use literals for step names in docs
-rw-r--r--vmdb/plugins/ansible.mdwn2
-rw-r--r--vmdb/plugins/apt.mdwn2
-rw-r--r--vmdb/plugins/chroot.mdwn4
-rw-r--r--vmdb/plugins/debootstrap.mdwn2
-rw-r--r--vmdb/plugins/fstab.mdwn2
-rw-r--r--vmdb/plugins/grub.mdwn2
-rw-r--r--vmdb/plugins/luks.mdwn2
-rw-r--r--vmdb/plugins/lvm2.mdwn4
-rw-r--r--vmdb/plugins/mkfs.mdwn2
-rw-r--r--vmdb/plugins/mkimg.mdwn2
-rw-r--r--vmdb/plugins/mount.mdwn2
-rw-r--r--vmdb/plugins/partition.mdwn6
-rw-r--r--vmdb/plugins/qemudebootstrap.mdwn2
-rw-r--r--vmdb/plugins/rootfs_cache.mdwn4
14 files changed, 19 insertions, 19 deletions
diff --git a/vmdb/plugins/ansible.mdwn b/vmdb/plugins/ansible.mdwn
index 8929c57..fa014ad 100644
--- a/vmdb/plugins/ansible.mdwn
+++ b/vmdb/plugins/ansible.mdwn
@@ -1,4 +1,4 @@
-Step: `ansible`
+Step: ansible
-----------------------------------------------------------------------------
Run Ansible using a provided playbook, to configure the image. vmdb2
diff --git a/vmdb/plugins/apt.mdwn b/vmdb/plugins/apt.mdwn
index dd83f18..a05922a 100644
--- a/vmdb/plugins/apt.mdwn
+++ b/vmdb/plugins/apt.mdwn
@@ -1,4 +1,4 @@
-Step: `apt`
+Step: apt
-----------------------------------------------------------------------------
Install packages using apt, which needs to already have been
diff --git a/vmdb/plugins/chroot.mdwn b/vmdb/plugins/chroot.mdwn
index 87fd5ec..d973e74 100644
--- a/vmdb/plugins/chroot.mdwn
+++ b/vmdb/plugins/chroot.mdwn
@@ -1,4 +1,4 @@
-Step: `chroot`
+Step: chroot
-----------------------------------------------------------------------------
Run a shell snippet in a chroot inside the image.
@@ -16,7 +16,7 @@ Example (in the .vmdb file):
echo I am in chroot
-Step: `shell`
+Step: shell
-----------------------------------------------------------------------------
Run a shell snippet on the host. This is not run in a chroot, and can
diff --git a/vmdb/plugins/debootstrap.mdwn b/vmdb/plugins/debootstrap.mdwn
index 18f083a..c1773d3 100644
--- a/vmdb/plugins/debootstrap.mdwn
+++ b/vmdb/plugins/debootstrap.mdwn
@@ -1,4 +1,4 @@
-Step: `debootstrap`
+Step: debootstrap
-----------------------------------------------------------------------------
Create a directory tree with a basic Debian installation. This does
diff --git a/vmdb/plugins/fstab.mdwn b/vmdb/plugins/fstab.mdwn
index a2c8eef..46f905a 100644
--- a/vmdb/plugins/fstab.mdwn
+++ b/vmdb/plugins/fstab.mdwn
@@ -1,4 +1,4 @@
-Step: `fstab`
+Step: fstab
-----------------------------------------------------------------------------
Create `/etc/fstab` inside the the image.
diff --git a/vmdb/plugins/grub.mdwn b/vmdb/plugins/grub.mdwn
index 1d69460..706e662 100644
--- a/vmdb/plugins/grub.mdwn
+++ b/vmdb/plugins/grub.mdwn
@@ -1,4 +1,4 @@
-Step: `grub`
+Step: grub
-----------------------------------------------------------------------------
Install the GRUB bootloader to the image. Works on a PC, for
diff --git a/vmdb/plugins/luks.mdwn b/vmdb/plugins/luks.mdwn
index 4b80f63..663d7b7 100644
--- a/vmdb/plugins/luks.mdwn
+++ b/vmdb/plugins/luks.mdwn
@@ -1,4 +1,4 @@
-Step: `luks`
+Step: luks
-----------------------------------------------------------------------------
Set up disk encryption using LUKS with the `cryptsetup` utility. The
diff --git a/vmdb/plugins/lvm2.mdwn b/vmdb/plugins/lvm2.mdwn
index 76f5892..b534e70 100644
--- a/vmdb/plugins/lvm2.mdwn
+++ b/vmdb/plugins/lvm2.mdwn
@@ -1,4 +1,4 @@
-Step: `vgcreate`
+Step: vgcreate
-----------------------------------------------------------------------------
Create an LVM2 volume group (VG), and also initialise the physical
@@ -22,7 +22,7 @@ Example (in the .vmdb file):
- other_partition
-Step: `lvcreate`
+Step: lvcreate
-----------------------------------------------------------------------------
Create an LVM2 logical volume (LV) in an existing volume group.
diff --git a/vmdb/plugins/mkfs.mdwn b/vmdb/plugins/mkfs.mdwn
index fb433b8..fed8609 100644
--- a/vmdb/plugins/mkfs.mdwn
+++ b/vmdb/plugins/mkfs.mdwn
@@ -1,4 +1,4 @@
-Step: `mkfs`
+Step: mkfs
-----------------------------------------------------------------------------
Create a filesystem.
diff --git a/vmdb/plugins/mkimg.mdwn b/vmdb/plugins/mkimg.mdwn
index e2998ac..2eb866a 100644
--- a/vmdb/plugins/mkimg.mdwn
+++ b/vmdb/plugins/mkimg.mdwn
@@ -1,4 +1,4 @@
-Step: `mkimg`
+Step: mkimg
-----------------------------------------------------------------------------
Create a new image file of a desired size.
diff --git a/vmdb/plugins/mount.mdwn b/vmdb/plugins/mount.mdwn
index cf447f1..9c830ef 100644
--- a/vmdb/plugins/mount.mdwn
+++ b/vmdb/plugins/mount.mdwn
@@ -1,4 +1,4 @@
-Step: `mount`
+Step: mount
-----------------------------------------------------------------------------
Mount a filesystem.
diff --git a/vmdb/plugins/partition.mdwn b/vmdb/plugins/partition.mdwn
index b058056..360c981 100644
--- a/vmdb/plugins/partition.mdwn
+++ b/vmdb/plugins/partition.mdwn
@@ -1,4 +1,4 @@
-Step: `mklabel`
+Step: mklabel
-----------------------------------------------------------------------------
Create a partition table on a block device.
@@ -15,7 +15,7 @@ Example (in the .vmdb file):
- mklabel: msdos
device: "{{ output }}"
-Step: `mkpart`
+Step: mkpart
-----------------------------------------------------------------------------
Create a partition.
@@ -42,7 +42,7 @@ Example (in the .vmdb file):
end: 100%
tag: root
-Step: `kpartx`
+Step: kpartx
-----------------------------------------------------------------------------
Create loop devices for partitions in an image file. Not needed when
diff --git a/vmdb/plugins/qemudebootstrap.mdwn b/vmdb/plugins/qemudebootstrap.mdwn
index 9b62ab0..bb9adc4 100644
--- a/vmdb/plugins/qemudebootstrap.mdwn
+++ b/vmdb/plugins/qemudebootstrap.mdwn
@@ -1,4 +1,4 @@
-tep: `qemu-debootstrap`
+Step: qemu-debootstrap
-----------------------------------------------------------------------------
Install packages using apt, which needs to already have been
diff --git a/vmdb/plugins/rootfs_cache.mdwn b/vmdb/plugins/rootfs_cache.mdwn
index 3f4ee0b..3528984 100644
--- a/vmdb/plugins/rootfs_cache.mdwn
+++ b/vmdb/plugins/rootfs_cache.mdwn
@@ -1,4 +1,4 @@
-Step: `cache-rootfs`
+Step: cache-rootfs
-----------------------------------------------------------------------------
Create a tarball of the root filesystem in the image.
@@ -13,7 +13,7 @@ Example (in the .vmdb file):
unless: rootfs_unpacked
-Step: `unpack-rootfs`
+Step: unpack-rootfs
-----------------------------------------------------------------------------
Unpack a tarball of the root filesystem to the image, and set the