Ignore "guest not ready" error when graceful halting [GH-1679]

This commit is contained in:
Mitchell Hashimoto 2013-05-01 18:50:40 -07:00
parent 2a690af5d1
commit 4c5262690e
2 changed files with 11 additions and 1 deletions

View File

@ -17,6 +17,11 @@ IMPROVEMENTS:
- More precise detection of Ubuntu/Debian guests so that running Vagrant
within an LXC container works properly now.
BUG FIXES:
- Ignore "guest not ready" errors when attempting to graceful halt and
carry on checks whether the halt succeeded. [GH-1679]
## 1.2.2 (April 23, 2013)
FEATURES:

View File

@ -44,7 +44,12 @@ module Vagrant
# checked above.
if graceful
env[:ui].info I18n.t("vagrant.actions.vm.halt.graceful")
env[:machine].guest.capability(:halt)
begin
env[:machine].guest.capability(:halt)
rescue Errors::MachineGuestNotReady
@logger.info("Machine guest not ready while attempting to halt. Ignoring.")
end
@logger.debug("Waiting for target graceful halt state: #{@target_state}")
count = 0