Fix an ordering issue with the expand-root plugin.

This commit is contained in:
Zach Marano 2017-04-14 15:58:54 -07:00
parent 96ebfe11fa
commit 70a2f93d41

View file

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