bootstrap-vz/bootstrapvz/providers/azure/tasks/boot.py

18 lines
635 B
Python
Raw Normal View History

2014-04-07 14:23:24 +02:00
from bootstrapvz.base import Task
from bootstrapvz.common import phases
from bootstrapvz.common.tasks import grub
2014-04-07 14:23:24 +02:00
2014-04-08 23:29:45 +02:00
2014-04-07 14:23:24 +02:00
class ConfigureGrub(Task):
description = 'Change grub configuration to allow for ttyS0 output'
phase = phases.system_modification
successors = [grub.InstallGrub_1_99, grub.InstallGrub_2]
2014-04-07 14:23:24 +02:00
@classmethod
def run(cls, info):
import os
from bootstrapvz.common.tools import sed_i
grub_config = os.path.join(info.root, 'etc/default/grub')
sed_i(grub_config, r'^(GRUB_CMDLINE_LINUX*=".*)"\s*$', r'\1console=ttyS0 earlyprintk=ttyS0 rootdelay=300"')
sed_i(grub_config, r'^.*(GRUB_TIMEOUT=).*$', r'GRUB_TIMEOUT=0')