mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
18 lines
559 B
Python
18 lines
559 B
Python
from bootstrapvz.base import Task
|
|
from bootstrapvz.common import phases
|
|
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
|
|
def run(cls, info):
|
|
info.grub_config['GRUB_CMDLINE_LINUX'].extend([
|
|
'console=tty0',
|
|
'consoleblank=0',
|
|
'elevator=noop',
|
|
])
|