diff --git a/common/tasks/boot.py b/common/tasks/boot.py index 7f814c3..ce7738d 100644 --- a/common/tasks/boot.py +++ b/common/tasks/boot.py @@ -45,7 +45,6 @@ class AddGrubPackage(Task): class InstallGrub(Task): description = 'Installing grub' phase = phases.system_modification - predecessors = [apt.AptUpgrade] @classmethod def run(cls, info): @@ -119,7 +118,6 @@ class AddExtlinuxPackage(Task): class InstallExtLinux(Task): description = 'Installing extlinux' phase = phases.system_modification - predecessors = [apt.AptUpgrade] @classmethod def run(cls, info): diff --git a/plugins/opennebula/tasks.py b/plugins/opennebula/tasks.py index 6b3d26d..2836eb2 100644 --- a/plugins/opennebula/tasks.py +++ b/plugins/opennebula/tasks.py @@ -1,6 +1,5 @@ from base import Task from common import phases -from common.tasks.locale import GenerateLocale import os assets = os.path.normpath(os.path.join(os.path.dirname(__file__), 'assets')) @@ -9,7 +8,6 @@ assets = os.path.normpath(os.path.join(os.path.dirname(__file__), 'assets')) class OpenNebulaContext(Task): description = 'Setup OpenNebula init context' phase = phases.system_modification - predecessors = [GenerateLocale] @classmethod def run(cls, info):