summaryrefslogtreecommitdiff
path: root/vmdb/plugins/grub.mdwn
diff options
context:
space:
mode:
Diffstat (limited to 'vmdb/plugins/grub.mdwn')
-rw-r--r--vmdb/plugins/grub.mdwn44
1 files changed, 0 insertions, 44 deletions
diff --git a/vmdb/plugins/grub.mdwn b/vmdb/plugins/grub.mdwn
deleted file mode 100644
index 1d69460..0000000
--- a/vmdb/plugins/grub.mdwn
+++ /dev/null
@@ -1,44 +0,0 @@
-Step: `grub`
------------------------------------------------------------------------------
-
-Install the GRUB bootloader to the image. Works on a PC, for
-traditional BIOS booting or modern UEFI booting. Does not (yet?)
-support Secure Boot.
-
-Warning: This is the least robust part of vmdb2.
-
-Step keys:
-
-* `grub` — REQUIRED; value MUST be one of `uefi` and `bios`, for
- a UEFI or a BIOS boot, respectively. (FIXME: these are valid for a
- PC; not sure what other archs require, if grub even works there.)
-
-* `tag` — REQUIRED; value is the tag for the root filesystem.
-
-* `efi` — REQUIRED for UEFI; value is the tag for the EFI
- filesystem.
-
-* `console` — OPTIONAL; set to `serial` to configure the image
- to use a serial console.
-
-* `device` — OPTIONAL; which device to install GRUB onto; this
- is needed when installing to a real hard drive, instead of an image.
-
-Example (in the .vmdb file):
-
- - grub: bios
- tag: root
-
-Same, but for UEFI:
-
- - grub: uefi
- tag: root
- efi: efi
- console: serial
-
-Install to a real hard disk (named with the `--image` option):
-
- - grub: uefi
- tag: root
- efi: efi
- image-dev: "{{ image }}"