mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
Moving host_dependencies tasks to the validation phase
This commit is contained in:
parent
9bf2c45ee2
commit
81778136bc
7 changed files with 7 additions and 7 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue