Merge pull request #438 from octivi/virtualbox_console

Force order of tasks that add console=xxx to kernel command line (VirtualBox)
This commit is contained in:
Anders Ingemann 2018-01-20 17:58:01 +01:00 committed by GitHub
commit 71253aeffd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,6 +6,7 @@ from bootstrapvz.common.tasks import grub
class AddVirtualConsoleGrubOutputDevice(Task): class AddVirtualConsoleGrubOutputDevice(Task):
description = 'Adding `tty0\' as output device for grub' description = 'Adding `tty0\' as output device for grub'
phase = phases.system_modification phase = phases.system_modification
predecessors = [grub.SetGrubConsolOutputDeviceToSerial]
successors = [grub.WriteGrubConfig] successors = [grub.WriteGrubConfig]
@classmethod @classmethod