summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorNeil Williams <codehelp@debian.org>2016-01-23 17:47:07 +0000
committerNeil Williams <codehelp@debian.org>2016-01-23 17:47:07 +0000
commit5a4f3228332b7e9b7890c7ea6d139e513a7a06a6 (patch)
treedde8a06e6e096f74c9452f4f27fa834c75d6dcac /bin
parenta7fb7ae762dd713a8212a42587583cf1b638e80e (diff)
downloadvmdebootstrap-5a4f3228332b7e9b7890c7ea6d139e513a7a06a6.tar.gz
handle extlinux being true by default with a test casevmdebootstrap-1.4
Diffstat (limited to 'bin')
-rwxr-xr-xbin/vmdebootstrap2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/vmdebootstrap b/bin/vmdebootstrap
index 30fca9d..2971260 100755
--- a/bin/vmdebootstrap
+++ b/bin/vmdebootstrap
@@ -175,7 +175,7 @@ class VmDebootstrap(cliapp.Application): # pylint: disable=too-many-public-meth
'requires updating the initramfs.')
if self.settings['roottype'] == 'btrfs' and\
- self.settings['extlinux']:
+ self.settings['extlinux'] and not self.settings['grub']:
raise cliapp.AppException(
'extlinux is not yet supported on btrfs. Use grub.')
uefi = self.handlers[Uefi.name]