bootstrap-vz/bootstrapvz/providers/oracle/__init__.py
Tiago Ilieve 992100d00a oracle: remove custom gzipped kernel
Since Xen HVM is supported on Oracle Cloud, the default kernels
compressed with XZ can be booted with no problem.
2016-02-06 19:13:55 -02:00

33 lines
1.1 KiB
Python

from bootstrapvz.common import task_groups
from bootstrapvz.common.tasks import image
from bootstrapvz.common.tasks import loopback
from bootstrapvz.common.tasks import ssh
from bootstrapvz.common.tasks import volume
import tasks.image
import tasks.network
import tasks.packages
def validate_manifest(data, validator, error):
import os.path
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.get_standard_groups(manifest))
taskset.update(task_groups.ssh_group)
taskset.update([loopback.AddRequiredCommands,
loopback.Create,
image.MoveImage,
ssh.DisableRootLogin,
volume.Delete,
tasks.image.CreateImageTarball,
tasks.network.InstallDHCPCD,
tasks.packages.DefaultPackages,
])
def resolve_rollback_tasks(taskset, manifest, completed, counter_task):
taskset.update(task_groups.get_standard_rollback_tasks(completed))