Class: OsCtld::Commands::Container::SendNow

Inherits:
Base
  • Object
show all
Defined in:
lib/osctld/commands/container/send_now.rb

Instance Attribute Summary

Attributes inherited from Base

#client, #client_handler, #id, #opts

Instance Method Summary collapse

Methods inherited from Base

#base_execute, #call_cmd, #call_cmd!, #error, #error!, handle, #handled, #indirect?, #initialize, #manipulate, #manipulation_holder, #ok, #progress, #request_stop, run, run!

Constructor Details

This class inherits a constructor from OsCtld::Commands::Base

Instance Method Details

#executeObject



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
48
49
50
51
52
# File 'lib/osctld/commands/container/send_now.rb', line 7

def execute
  ct = DB::Containers.find(opts[:id], opts[:pool])
  error!('container not found') unless ct

  manipulate(ct) do
    progress(type: :step, title: 'Sending config')
    call_cmd!(
      Commands::Container::SendConfig,
      id: ct.id,
      pool: ct.pool.name,
      dst: opts[:dst],
      port: opts[:port],
      passphrase: opts[:passphrase],
      as_id: opts[:as_id],
      to_pool: opts[:to_pool],
      network_interfaces: opts[:network_interfaces],
      snapshots: opts[:snapshots],
      from_snapshot: opts[:from_snapshot],
      preexisting_datasets: opts[:preexisting_datasets]
    )

    progress(type: :step, title: 'Sending rootfs')
    call_cmd!(
      Commands::Container::SendRootfs,
      id: ct.id,
      pool: ct.pool.name
    )

    progress(type: :step, title: 'Sending state')
    call_cmd!(
      Commands::Container::SendState,
      id: ct.id,
      pool: ct.pool.name,
      clone: opts[:clone],
      restart: opts[:restart],
      start: opts[:start]
    )

    progress(type: :step, title: 'Cleaning up')
    call_cmd!(
      Commands::Container::SendCleanup,
      id: ct.id,
      pool: ct.pool.name
    )
  end
end