mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 09:50:37 +00:00
Merge pull request #372 from zmarano/master
Fix an ordering issue with the expand-root plugin.
This commit is contained in:
commit
0fa83961b8
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
from bootstrapvz.base import Task
|
from bootstrapvz.base import Task
|
||||||
from bootstrapvz.common import phases
|
from bootstrapvz.common import phases
|
||||||
|
from bootstrapvz.common.tasks import apt
|
||||||
from bootstrapvz.common.tasks import initd
|
from bootstrapvz.common.tasks import initd
|
||||||
from bootstrapvz.common.tasks import packages
|
|
||||||
from bootstrapvz.common.tools import log_check_call
|
from bootstrapvz.common.tools import log_check_call
|
||||||
from bootstrapvz.common.tools import rel_path
|
from bootstrapvz.common.tools import rel_path
|
||||||
from bootstrapvz.common.tools import sed_i
|
from bootstrapvz.common.tools import sed_i
|
||||||
|
@ -14,7 +14,7 @@ ASSETS_DIR = rel_path(__file__, 'assets')
|
||||||
class InstallGrowpart(Task):
|
class InstallGrowpart(Task):
|
||||||
description = 'Adding necessary packages for growpart.'
|
description = 'Adding necessary packages for growpart.'
|
||||||
phase = phases.preparation
|
phase = phases.preparation
|
||||||
successors = [packages.AddManifestPackages]
|
predecessors = [apt.AddBackports]
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def run(cls, info):
|
def run(cls, info):
|
||||||
|
|
Loading…
Add table
Reference in a new issue