summaryrefslogtreecommitdiff
path: root/vmdb/plugins/grub_plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'vmdb/plugins/grub_plugin.py')
-rw-r--r--vmdb/plugins/grub_plugin.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/vmdb/plugins/grub_plugin.py b/vmdb/plugins/grub_plugin.py
index 469bd50..7206cd5 100644
--- a/vmdb/plugins/grub_plugin.py
+++ b/vmdb/plugins/grub_plugin.py
@@ -225,13 +225,14 @@ class GrubStepRunner(vmdb.StepRunnerInterface):
self.add_grub_serial_console(chroot)
vmdb.runcmd_chroot(chroot, ["grub-mkconfig", "-o", "/boot/grub/grub.cfg"])
+ help_out = vmdb.runcmd_chroot(chroot, ["grub-install", "--help"])
vmdb.runcmd_chroot(
chroot,
[
"grub-install",
"--target=" + grub_target,
"--no-nvram",
- "--force-extra-removable",
+ "--no-extra-removable" if b"--no-extra-removable" in help_out else "--force-extra-removable",
"--no-floppy",
"--modules=part_msdos part_gpt",
"--grub-mkdevicemap=/boot/grub/device.map",