From: Tollef Fog Heen Date: Mon, 7 Apr 2014 08:17:11 +0000 (+0200) Subject: Check for extlinux, not no-extlinux, fixes crash X-Git-Url: https://git.siccegge.de//index.cgi?p=forks%2Fvmdebootstrap.git;a=commitdiff_plain;h=6bf7f64162ce4099a6ba70e25a529b599a749fee Check for extlinux, not no-extlinux, fixes crash --- diff --git a/vmdebootstrap b/vmdebootstrap index 77da850..3344a59 100755 --- a/vmdebootstrap +++ b/vmdebootstrap @@ -146,7 +146,7 @@ class VmDebootstrap(cliapp.Application): self.setup_networking(rootdir) self.customize(rootdir) if self.settings['image']: - if not self.settings['no-extlinux']: + if self.settings['extlinux']: self.install_extlinux(rootdev, rootdir) self.optimize_image(rootdir)