forked from andsens/bootstrap-vz
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path__init__.py
40 lines (32 loc) · 1.47 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
from bootstrapvz.common import task_groups
from bootstrapvz.common.tasks import apt, folder, filesystem
from bootstrapvz.common.tools import rel_path
import tasks.commands
import tasks.image
def validate_manifest(data, validator, error):
schema_path = rel_path(__file__, 'manifest-schema.yml')
validator(data, schema_path)
def resolve_tasks(taskset, manifest):
taskset.update(task_groups.get_base_group(manifest))
taskset.update([folder.Create,
filesystem.CopyMountTable,
filesystem.RemoveMountTable,
folder.Delete,
])
taskset.update(task_groups.get_network_group(manifest))
taskset.update(task_groups.get_apt_group(manifest))
taskset.update(task_groups.get_locale_group(manifest))
taskset.update(task_groups.security_group)
taskset.update(task_groups.cleanup_group)
# Let the autostart of daemons by apt remain disabled
taskset.discard(apt.EnableDaemonAutostart)
taskset.update([tasks.commands.AddRequiredCommands,
tasks.image.CreateDockerfileEntry,
tasks.image.CreateImage,
])
if 'labels' in manifest.provider:
taskset.add(tasks.image.PopulateLabels)
if 'dockerfile' in manifest.provider:
taskset.add(tasks.image.AppendManifestDockerfile)
def resolve_rollback_tasks(taskset, manifest, completed, counter_task):
taskset.update(task_groups.get_standard_rollback_tasks(completed))