mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
14 lines
489 B
Python
14 lines
489 B
Python
def validate_manifest(data, validator, error):
|
|
from bootstrapvz.common.tools import rel_path
|
|
validator(data, rel_path(__file__, 'manifest-schema.yml'))
|
|
|
|
|
|
def resolve_tasks(taskset, manifest):
|
|
from . import tasks
|
|
taskset.add(tasks.CopyAmiToRegions)
|
|
if 'manifest_url' in manifest.plugins['ec2_publish']:
|
|
taskset.add(tasks.PublishAmiManifest)
|
|
|
|
ami_public = manifest.plugins['ec2_publish'].get('public')
|
|
if ami_public:
|
|
taskset.add(tasks.PublishAmi)
|