summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-10-11 10:22:28 +0100
committerRichard Maw <richard.maw@codethink.co.uk>2012-10-11 10:22:28 +0100
commit1f23b06cbc7c3e20284ed7d1b0a66a5665ecf1e2 (patch)
treeec7f7378f6c2e8d523ee17a8b5d169cd27418247
parenta2eb55aaed8f72ae842ec484f0384b5e2fa8fa61 (diff)
downloadvmdebootstrap-1f23b06cbc7c3e20284ed7d1b0a66a5665ecf1e2.tar.gz
Run customize before install_extlinux
install_extlinux requires the kernel, since it is no longer mandatory that debootstrap installs it, the kernel may be added in customize.
-rwxr-xr-xvmdebootstrap2
1 files changed, 1 insertions, 1 deletions
diff --git a/vmdebootstrap b/vmdebootstrap
index 9821164..2ffe663 100755
--- a/vmdebootstrap
+++ b/vmdebootstrap
@@ -99,8 +99,8 @@ class VmDebootstrap(cliapp.Application):
self.create_users(rootdir)
self.remove_udev_persistent_rules(rootdir)
self.setup_networking(rootdir)
- self.install_extlinux(rootdev, rootdir)
self.customize(rootdir)
+ self.install_extlinux(rootdev, rootdir)
except BaseException, e:
self.message('EEEK! Something bad happened...')
self.cleanup_system()