Moving host_dependencies tasks to the validation phase

This commit is contained in:
Nicolas Braud-Santoni 2016-09-12 01:12:19 +02:00
parent 9bf2c45ee2
commit 81778136bc
No known key found for this signature in database
GPG key ID: 9D4F88010CFE19E3
7 changed files with 7 additions and 7 deletions

View file

@ -9,7 +9,7 @@ log = logging.getLogger(__name__)
class AddRequiredCommands(Task):
description = 'Adding commands required for bootstrapping Debian'
phase = phases.preparation
phase = phases.validation
successors = [host.CheckExternalCommands]
@classmethod

View file

@ -8,7 +8,7 @@ import volume
class AddRequiredCommands(Task):
description = 'Adding commands required for formatting'
phase = phases.preparation
phase = phases.validation
successors = [host.CheckExternalCommands]
@classmethod

View file

@ -6,7 +6,7 @@ import volume
class AddRequiredCommands(Task):
description = 'Adding commands required for creating loopback volumes'
phase = phases.preparation
phase = phases.validation
successors = [host.CheckExternalCommands]
@classmethod

View file

@ -7,7 +7,7 @@ import volume
class AddRequiredCommands(Task):
description = 'Adding commands required for partitioning the volume'
phase = phases.preparation
phase = phases.validation
successors = [host.CheckExternalCommands]
@classmethod

View file

@ -10,7 +10,7 @@ import os
class AddRequiredCommands(Task):
description = 'Adding commands required for reducing volume size'
phase = phases.preparation
phase = phases.validation
successors = [host.CheckExternalCommands]
@classmethod

View file

@ -5,7 +5,7 @@ from bootstrapvz.common.tasks import host
class AddRequiredCommands(Task):
description = 'Adding commands required for docker'
phase = phases.preparation
phase = phases.validation
successors = [host.CheckExternalCommands]
@classmethod

View file

@ -5,7 +5,7 @@ from bootstrapvz.common.tasks import host
class AddExternalCommands(Task):
description = 'Determining required external commands for EC2 bootstrapping'
phase = phases.preparation
phase = phases.validation
successors = [host.CheckExternalCommands]
@classmethod