mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00

Since Xen HVM is supported on Oracle Cloud, the default kernels compressed with XZ can be booted with no problem.
33 lines
1.1 KiB
Python
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))
|