diff --git a/bootstrapvz/common/task_groups.py b/bootstrapvz/common/task_groups.py index b35fbb3..330c598 100644 --- a/bootstrapvz/common/task_groups.py +++ b/bootstrapvz/common/task_groups.py @@ -139,7 +139,7 @@ def get_bootloader_group(manifest): if manifest.system['bootloader'] == 'extlinux': group.extend([boot.AddExtlinuxPackage, boot.ConfigureExtlinux, - boot.InstallExtLinux]) + boot.InstallExtlinux]) return group diff --git a/bootstrapvz/common/tasks/boot.py b/bootstrapvz/common/tasks/boot.py index dbc419d..9610fd5 100644 --- a/bootstrapvz/common/tasks/boot.py +++ b/bootstrapvz/common/tasks/boot.py @@ -165,7 +165,7 @@ class ConfigureExtlinux(Task): r'EXTLINUX_PARAMETERS="\1 console=ttyS0"') -class InstallExtLinux(Task): +class InstallExtlinux(Task): description = 'Installing extlinux' phase = phases.system_modification predecessors = [filesystem.FStab, ConfigureExtlinux]