From ff014a431ed50773662ea7ed538d5b547792dde4 Mon Sep 17 00:00:00 2001 From: Marcin Engelmann Date: Sat, 20 Jan 2018 15:08:33 +0100 Subject: [PATCH] Force order of tasks that add console=xxx to kernel command line --- bootstrapvz/providers/virtualbox/tasks/boot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bootstrapvz/providers/virtualbox/tasks/boot.py b/bootstrapvz/providers/virtualbox/tasks/boot.py index 2a86373..51b1a15 100644 --- a/bootstrapvz/providers/virtualbox/tasks/boot.py +++ b/bootstrapvz/providers/virtualbox/tasks/boot.py @@ -6,6 +6,7 @@ from bootstrapvz.common.tasks import grub class AddVirtualConsoleGrubOutputDevice(Task): description = 'Adding `tty0\' as output device for grub' phase = phases.system_modification + predecessors = [grub.SetGrubConsolOutputDeviceToSerial] successors = [grub.WriteGrubConfig] @classmethod