mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
13 lines
398 B
Python
13 lines
398 B
Python
from . import tasks
|
|
|
|
|
|
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):
|
|
taskset.add(tasks.InstallSaltDependencies)
|
|
taskset.add(tasks.BootstrapSaltMinion)
|
|
if 'grains' in manifest.plugins['salt']:
|
|
taskset.add(tasks.SetSaltGrains)
|