Fix interaction with reload plugin

This commit is contained in:
Kirill Yudenok
2021-03-22 19:53:52 +03:00
committed by Darragh Bailey
parent b99d46d829
commit b9c73a3b99

View File

@@ -13,22 +13,30 @@ module VagrantPlugins
def call(env)
env[:ui].info(I18n.t('vagrant_libvirt.halt_domain'))
timeout = env[:machine].config.vm.graceful_halt_timeout
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
Timeout.timeout(timeout) do
begin
env[:machine].guest.capability(:halt)
rescue Timeout::Error
raise
rescue
@logger.info('Trying Libvirt graceful shutdown.')
# Read domain object again
dom = env[:machine].provider.driver.connection.servers.get(env[:machine].id.to_s)
if dom.state.to_s == 'running'
dom.shutdown
end
end
begin
domain.wait_for(30) do
!ready?
domain.wait_for(timeout) do
!ready?
end
end
rescue Fog::Errors::TimeoutError
rescue Timeout::Error
@logger.info('VM is still running. Calling force poweroff.')
domain.poweroff
end