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...')
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
|