forked from andsens/bootstrap-vz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__init__.py
47 lines (37 loc) · 1.76 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from bootstrapvz.common import task_groups
from bootstrapvz.common.tasks import image, loopback, initd, ssh, logicalvolume
from .tasks import packages, boot
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.update(task_groups.get_standard_groups(manifest))
taskset.update([packages.DefaultPackages,
initd.InstallInitScripts,
ssh.AddOpenSSHPackage,
ssh.ShredHostkeys,
ssh.AddSSHKeyGeneration,
])
if manifest.volume.get('logicalvolume', []):
taskset.update([logicalvolume.AddRequiredCommands,
logicalvolume.Create,
])
else:
taskset.update([loopback.AddRequiredCommands,
loopback.Create,
image.MoveImage,
])
if manifest.provider.get('virtio', []):
from .tasks import virtio
taskset.update([virtio.VirtIO])
if manifest.provider.get('console', False):
if manifest.provider['console'] == 'virtual':
taskset.update([boot.SetGrubConsolOutputDeviceToVirtual])
from bootstrapvz.common.releases import jessie
if manifest.release >= jessie:
taskset.update([boot.SetGrubConsolOutputDeviceToVirtual,
boot.SetSystemdTTYVTDisallocate,
])
def resolve_rollback_tasks(taskset, manifest, completed, counter_task):
taskset.update(task_groups.get_standard_rollback_tasks(completed))
counter_task(taskset, logicalvolume.Create, logicalvolume.Delete)