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
48
49
50
51
52
|
# File 'lib/osctld/commands/container/set_image_config.rb', line 16
def execute(ct)
manipulate(ct) do
error!('container is running') if ct.running?
tpl = opts[:image]
image = {
distribution: tpl[:distribution] || ct.distribution,
version: tpl[:version] || ct.version,
arch: tpl[:arch] || ct.arch,
vendor: tpl[:vendor] || ct.vendor,
variant: tpl[:variant] || ct.variant
}
with_image_path(ct.pool, type: opts[:type], path: opts[:path], image:) do |tpl_path|
progress('Applying configuration')
fh = File.open(tpl_path, 'r')
importer = Container::Importer.new(ct.pool, fh, ct_id: ct.id, image_file: tpl_path)
importer.load_metadata
ct.patch_config(importer.get_container_config)
fh.close
end
if tpl[:distribution] || tpl[:version] || tpl[:arch] || tpl[:vendor] || tpl[:variant]
ct.set(distribution: {
name: image[:distribution],
version: image[:version],
arch: image[:arch],
vendor: image[:vendor],
variant: image[:variant]
})
end
ok
end
end
|