2014-04-07 14:23:24 +02:00
|
|
|
from bootstrapvz.base import Task
|
|
|
|
from bootstrapvz.common import phases
|
|
|
|
from bootstrapvz.common.tasks import boot
|
|
|
|
|
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 = [boot.InstallGrub]
|
|
|
|
|
|
|
|
@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')
|