mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
Moving checking tasks to the validation phase
This commit is contained in:
parent
8cd0648e27
commit
9bf2c45ee2
7 changed files with 8 additions and 8 deletions
|
@ -5,7 +5,7 @@ from ..exceptions import TaskError
|
||||||
|
|
||||||
class CheckExternalCommands(Task):
|
class CheckExternalCommands(Task):
|
||||||
description = 'Checking availability of external commands'
|
description = 'Checking availability of external commands'
|
||||||
phase = phases.preparation
|
phase = phases.validation
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def run(cls, info):
|
def run(cls, info):
|
||||||
|
|
|
@ -5,7 +5,7 @@ import os
|
||||||
|
|
||||||
class CheckPlaybookPath(Task):
|
class CheckPlaybookPath(Task):
|
||||||
description = 'Checking whether the playbook path exist'
|
description = 'Checking whether the playbook path exist'
|
||||||
phase = phases.preparation
|
phase = phases.validation
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def run(cls, info):
|
def run(cls, info):
|
||||||
|
|
|
@ -7,7 +7,7 @@ import urllib2
|
||||||
|
|
||||||
class CheckAptProxy(Task):
|
class CheckAptProxy(Task):
|
||||||
description = 'Checking reachability of APT proxy server'
|
description = 'Checking reachability of APT proxy server'
|
||||||
phase = phases.preparation
|
phase = phases.validation
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def run(cls, info):
|
def run(cls, info):
|
||||||
|
|
|
@ -5,7 +5,7 @@ import os
|
||||||
|
|
||||||
class CheckAssetsPath(Task):
|
class CheckAssetsPath(Task):
|
||||||
description = 'Checking whether the assets path exist'
|
description = 'Checking whether the assets path exist'
|
||||||
phase = phases.preparation
|
phase = phases.validation
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def run(cls, info):
|
def run(cls, info):
|
||||||
|
|
|
@ -6,7 +6,7 @@ import os
|
||||||
|
|
||||||
class CheckAssetsPath(Task):
|
class CheckAssetsPath(Task):
|
||||||
description = 'Checking whether the assets path exist'
|
description = 'Checking whether the assets path exist'
|
||||||
phase = phases.preparation
|
phase = phases.validation
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def run(cls, info):
|
def run(cls, info):
|
||||||
|
@ -22,7 +22,7 @@ class CheckAssetsPath(Task):
|
||||||
|
|
||||||
class CheckManifestPath(Task):
|
class CheckManifestPath(Task):
|
||||||
description = 'Checking whether the manifest path exist'
|
description = 'Checking whether the manifest path exist'
|
||||||
phase = phases.preparation
|
phase = phases.validation
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def run(cls, info):
|
def run(cls, info):
|
||||||
|
|
|
@ -9,7 +9,7 @@ assets = os.path.normpath(os.path.join(os.path.dirname(__file__), 'assets'))
|
||||||
|
|
||||||
class CheckBoxPath(Task):
|
class CheckBoxPath(Task):
|
||||||
description = 'Checking if the vagrant box file already exists'
|
description = 'Checking if the vagrant box file already exists'
|
||||||
phase = phases.preparation
|
phase = phases.validation
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def run(cls, info):
|
def run(cls, info):
|
||||||
|
|
|
@ -9,7 +9,7 @@ assets = os.path.normpath(os.path.join(os.path.dirname(__file__), '../assets'))
|
||||||
|
|
||||||
class CheckGuestAdditionsPath(Task):
|
class CheckGuestAdditionsPath(Task):
|
||||||
description = 'Checking whether the VirtualBox Guest Additions image exists'
|
description = 'Checking whether the VirtualBox Guest Additions image exists'
|
||||||
phase = phases.preparation
|
phase = phases.validation
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def run(cls, info):
|
def run(cls, info):
|
||||||
|
|
Loading…
Add table
Reference in a new issue