From b6976eb6e944ed02cc50eefab254d39682310f43 Mon Sep 17 00:00:00 2001 From: Anders Ingemann Date: Wed, 31 Dec 2014 13:39:54 +0100 Subject: [PATCH] Lowercase L for InstallExlinux taskname --- bootstrapvz/common/task_groups.py | 2 +- bootstrapvz/common/tasks/boot.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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]