summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRiccardo Scartozzi risca <me@risca.eu>2017-07-17 18:23:35 +0200
committerLars Wirzenius <liw@liw.fi>2017-07-23 20:02:20 +0300
commit2b028bb5a8135b508a145bbe359c67f3f6e7bc0c (patch)
treed8d5d6707c9733f1c77a1c6e37be5ebce51e0b97
parentb7f545758b7aa9bed9bd253f25f6e79258ff9e69 (diff)
downloadvmdb2-2b028bb5a8135b508a145bbe359c67f3f6e7bc0c.tar.gz
Fix grub plugin documentation and examples
-rw-r--r--smoke-pc.vmdb1
-rw-r--r--uefi.vmdb1
-rw-r--r--vmdb/plugins/grub_plugin.py7
3 files changed, 3 insertions, 6 deletions
diff --git a/smoke-pc.vmdb b/smoke-pc.vmdb
index 9fe587e..f1aba65 100644
--- a/smoke-pc.vmdb
+++ b/smoke-pc.vmdb
@@ -39,5 +39,4 @@ steps:
- grub: bios
root-fs: root-fs
root-part: root-part
- device: "{{ output }}"
console: serial
diff --git a/uefi.vmdb b/uefi.vmdb
index 7369e31..c1e6b23 100644
--- a/uefi.vmdb
+++ b/uefi.vmdb
@@ -47,4 +47,3 @@ steps:
root-fs: root-fs
root-part: root-part
efi-part: efi-part
- device: "{{ output }}"
diff --git a/vmdb/plugins/grub_plugin.py b/vmdb/plugins/grub_plugin.py
index 2a2029b..eb810b8 100644
--- a/vmdb/plugins/grub_plugin.py
+++ b/vmdb/plugins/grub_plugin.py
@@ -60,14 +60,13 @@
# root filesystem. Then install grub with a step like this:
#
# - grub: uefi
-# device: "{{ output }}"
# root-fs: root-fs
# root-part: root-part
# efi-part: efi-part
#
-# Here: device specifies the output image, root-fs is the tag for the
-# root filesystem, root-part is the tag for the partition with the
-# root filesystem, and efi-part is tag for the EFI partition.
+# Here: root-fs is the tag for the root filesystem, root-part is the
+# tag for the partition with the root filesystem, and efi-part is tag
+# for the EFI partition.
#
# The grub step will take of the rest.