class VagrantPlugins::ProviderLibvirt::Action::HaltDomain

Halt the domain.

Public Class Methods

new(app, _env) click to toggle source
# File lib/vagrant-libvirt/action/halt_domain.rb, line 8
def initialize(app, _env)
  @logger = Log4r::Logger.new('vagrant_libvirt::action::halt_domain')
  @app = app
end

Public Instance Methods

call(env) click to toggle source
# File lib/vagrant-libvirt/action/halt_domain.rb, line 13
def call(env)
  env[:ui].info(I18n.t('vagrant_libvirt.halt_domain'))

  domain = env[:machine].provider.driver.connection.servers.get(env[:machine].id.to_s)
  raise Errors::NoDomainError if domain.nil?

  begin
    env[:machine].guest.capability(:halt)
  rescue
    @logger.info('Trying Libvirt graceful shutdown.')
    domain.shutdown
  end


  begin
    domain.wait_for(30) do
      !ready?
    end
  rescue Fog::Errors::TimeoutError
    @logger.info('VM is still running. Calling force poweroff.')
    domain.poweroff
  end

  @app.call(env)
end