Sha256: 3d5434de9fd22754bf6b5f4796187cd3653560fdd3821908a9ac9335699bba7c

Contents?: true

Size: 903 Bytes

Versions: 4

Compression:

Stored size: 903 Bytes

Contents

require 'log4r'

module VagrantPlugins
  module ProviderLibvirt
    module Action
      # Halt the domain.
      class HaltDomain
        def initialize(app, _env)
          @logger = Log4r::Logger.new('vagrant_libvirt::action::halt_domain')
          @app = app
        end

        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?

          @logger.info('Trying gracefull shutdown.')
          domain.shutdown
          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
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
vagrant-libvirt-0.0.40 lib/vagrant-libvirt/action/halt_domain.rb
vagrant-libvirt-0.0.39 lib/vagrant-libvirt/action/halt_domain.rb
vagrant-libvirt-0.0.38 lib/vagrant-libvirt/action/halt_domain.rb
vagrant-libvirt-0.0.37 lib/vagrant-libvirt/action/halt_domain.rb