Fix some task ordering warnings

This commit is contained in:
Anders Ingemann 2016-12-01 15:59:51 +01:00
parent c81eacf02f
commit ee18fc84ca
No known key found for this signature in database
GPG key ID: 49C87973A14931A9
2 changed files with 1 additions and 2 deletions

View file

@ -101,7 +101,6 @@ class AddManifestPreferences(Task):
class InstallTrustedKeys(Task):
description = 'Installing trusted keys'
phase = phases.package_installation
predecessors = [ValidateTrustedKeys]
@classmethod
def run(cls, info):

View file

@ -28,7 +28,7 @@ class CheckBoxPath(Task):
class CreateVagrantBoxDir(Task):
description = 'Creating directory for the vagrant box'
phase = phases.preparation
predecessors = [workspace.CreateWorkspace, CheckBoxPath]
predecessors = [workspace.CreateWorkspace]
@classmethod
def run(cls, info):