Remove unnecessary dependencies

This commit is contained in:
Anders Ingemann 2014-01-05 23:25:05 +01:00
parent 0092e1c2c2
commit d7f859b76f
2 changed files with 0 additions and 4 deletions

View file

@ -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):

View file

@ -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):