mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
Remove unnecessary dependencies
This commit is contained in:
parent
0092e1c2c2
commit
d7f859b76f
2 changed files with 0 additions and 4 deletions
|
@ -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):
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Add table
Reference in a new issue