Force order of tasks that add console=xxx to kernel command line

This commit is contained in:
Marcin Engelmann 2018-01-20 15:08:33 +01:00
parent ad2c455c4c
commit ff014a431e

View file

@ -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