bootstrap-vz/bootstrapvz/plugins/vagrant/__init__.py
2015-10-18 16:35:11 -02:00

34 lines
1.1 KiB
Python

import tasks
from bootstrapvz.common import task_groups
from bootstrapvz.common.tasks import image
from bootstrapvz.common.tasks import ssh
from bootstrapvz.common.tasks import volume
import os
def validate_manifest(data, validator, error):
schema_path = os.path.normpath(os.path.join(os.path.dirname(__file__), 'manifest-schema.yml'))
validator(data, schema_path)
def resolve_tasks(taskset, manifest):
taskset.update(task_groups.ssh_group)
taskset.discard(image.MoveImage)
taskset.discard(ssh.DisableSSHPasswordAuthentication)
taskset.update([tasks.CheckBoxPath,
tasks.CreateVagrantBoxDir,
tasks.AddPackages,
tasks.CreateVagrantUser,
tasks.PasswordlessSudo,
tasks.SetRootPassword,
tasks.AddInsecurePublicKey,
tasks.PackageBox,
tasks.RemoveVagrantBoxDir,
volume.Delete,
])
def resolve_rollback_tasks(taskset, manifest, completed, counter_task):
counter_task(taskset, tasks.CreateVagrantBoxDir, tasks.RemoveVagrantBoxDir)