mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00

The way boot options for linux and config params for grub were configured gave rise to quite a few bugs. The configuration has now been abstracted so that options can be added without interfering with the work of other tasks (no more sed_i!)
37 lines
1.4 KiB
Python
37 lines
1.4 KiB
Python
from bootstrapvz.common import task_groups
|
|
import tasks.packages
|
|
import tasks.boot
|
|
from bootstrapvz.common.tasks import image
|
|
from bootstrapvz.common.tasks import loopback
|
|
from bootstrapvz.common.tasks import initd
|
|
from bootstrapvz.common.tasks import ssh
|
|
from bootstrapvz.common.tasks import apt
|
|
from bootstrapvz.common.tasks import grub
|
|
|
|
|
|
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([apt.AddBackports,
|
|
tasks.packages.DefaultPackages,
|
|
loopback.AddRequiredCommands,
|
|
loopback.Create,
|
|
image.MoveImage,
|
|
initd.InstallInitScripts,
|
|
ssh.AddOpenSSHPackage,
|
|
ssh.ShredHostkeys,
|
|
ssh.AddSSHKeyGeneration,
|
|
tasks.packages.Waagent,
|
|
tasks.boot.ConfigureGrub,
|
|
tasks.boot.PatchUdev,
|
|
])
|
|
taskset.discard(grub.SetGrubConsolOutputDeviceToSerial)
|
|
|
|
|
|
def resolve_rollback_tasks(taskset, manifest, completed, counter_task):
|
|
taskset.update(task_groups.get_standard_rollback_tasks(completed))
|