Class: VagrantPlugins::Proxmox::Action::StartVm
- Inherits:
-
ProxmoxAction
- Object
- ProxmoxAction
- VagrantPlugins::Proxmox::Action::StartVm
- Defined in:
- lib/vagrant-proxmox/action/start_vm.rb
Overview
This action starts the Proxmox virtual machine in env
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, env) ⇒ StartVm
constructor
A new instance of StartVm.
Constructor Details
#initialize(app, env) ⇒ StartVm
Returns a new instance of StartVm.
8 9 10 11 |
# File 'lib/vagrant-proxmox/action/start_vm.rb', line 8 def initialize app, env @app = app @logger = Log4r::Logger.new 'vagrant_proxmox::action::start_vm' end |
Instance Method Details
#call(env) ⇒ Object
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 |
# File 'lib/vagrant-proxmox/action/start_vm.rb', line 13 def call env env[:ui].info I18n.t('vagrant_proxmox.starting_vm') begin node, vm_id = env[:machine].id.split '/' exit_status = connection(env).start_vm vm_id exit_status == 'OK' ? exit_status : raise(VagrantPlugins::Proxmox::Errors::ProxmoxTaskFailed, proxmox_exit_status: exit_status) rescue StandardError => e raise VagrantPlugins::Proxmox::Errors::VMStartError, proxmox_exit_status: e. end env[:ui].info I18n.t('vagrant_proxmox.done') env[:ui].info I18n.t('vagrant_proxmox.waiting_for_ssh_connection') retryException = Class.new StandardError begin retryable(on: retryException, tries: env[:machine].provider_config.ssh_timeout / env[:machine].provider_config.ssh_status_check_interval + 1, sleep: env[:machine].provider_config.ssh_status_check_interval) do raise retryException unless env[:interrupted] || env[:machine].communicate.ready? end rescue retryException raise VagrantPlugins::Proxmox::Errors::SSHError end env[:ui].info I18n.t('vagrant_proxmox.done') next_action env end |