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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# File 'lib/osctld/commands/container/reinstall.rb', line 16
def execute(ct)
fh = nil
manipulate(ct) do
error!('container is running') if ct.running?
tpl = opts[:image]
if opts[:type] == 'remote'
tpl[:distribution] ||= ct.distribution
tpl[:version] ||= ct.version
tpl[:arch] ||= ct.arch
tpl[:vendor] ||= ct.vendor
tpl[:variant] ||= ct.variant
end
with_image_path(ct.pool, type: opts[:type], path: opts[:path], image: tpl) do |tpl_path|
builder = Container::Builder.new(ct.new_run_conf, cmd: self)
snaps = snapshots(ct)
if snaps.any? && !opts[:remove_snapshots]
error!("the dataset has snapshots:\n #{snaps.join("\n ")}")
end
snaps.each { |snap| zfs(:destroy, nil, snap) }
ct.dataset.unmount(recursive: true)
props = OsCtl::Lib::Zfs::PropertyState.new
props.read_from(ct.dataset)
new_ds = OsCtl::Lib::Zfs::Dataset.new("#{ct.dataset}.reinstall")
new_ds.create!(properties: props.options)
ct.dataset.children.each do |ds|
new_subds = File.join(new_ds.name, ds.relative_name)
zfs(:rename, nil, "#{ds} #{new_subds}")
end
TrashBin.add_dataset(ct.pool, ct.dataset)
zfs(:rename, nil, "#{new_ds} #{ct.dataset}")
fh = File.open(tpl_path, 'r')
importer = Container::Importer.new(ct.pool, fh, ct_id: ct.id, image_file: tpl_path)
importer.load_metadata
importer.import_root_dataset(builder)
ct.patch_config(importer.get_container_config)
ct.dataset.mount(recursive: true)
builder.setup_ct_dir
builder.setup_rootfs
end
ok
end
ensure
fh && fh.close
end
|