Class: VagrantPlugins::Qubes::Action::Boot

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-qubes/action/boot.rb

Instance Method Summary collapse

Constructor Details

#initialize(app, _env) ⇒ Boot

Returns a new instance of Boot.



8
9
10
11
# File 'lib/vagrant-qubes/action/boot.rb', line 8

def initialize(app, _env)
  @app = app
  @logger = Log4r::Logger.new('vagrant_qubes::action::boot')
end

Instance Method Details

#boot(env) ⇒ Object



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
# File 'lib/vagrant-qubes/action/boot.rb', line 18

def boot(env)
  @logger.info('vagrant-qubes, boot: start...')

  # Get config
  machine = env[:machine]
  config = env[:machine].provider_config

  @logger.info("vagrant-qubes, boot: machine id: #{machine.id}")
  @logger.info('vagrant-qubes, boot: current state: '\
               "#{env[:machine_state]}")

  if env[:machine_state].to_s == 'running'
    env[:ui].info I18n.t('vagrant_qubes.already_running')
  elsif env[:machine_state].to_s == 'not_created'
    env[:ui].info I18n.t('vagrant_qubes.vagrant_qubes_message',
      message: 'Cannot boot in state' + env[:machine_state].to_s)
  else
    command = 'qrexec-client-vm dom0 vagrant_start+' + env[:machine].config.vm.hostname
    stdout, stderr, status = Open3.capture3(command)
    if status != 0
      raise Errors::QRExecError,
            message: 'qrexec failed with status' + status.to_s
    end
    env[:ui].info I18n.t('vagrant_qubes.states.running.long')
  end
end

#call(env) ⇒ Object



13
14
15
16
# File 'lib/vagrant-qubes/action/boot.rb', line 13

def call(env)
  boot(env)
  @app.call(env)
end