Sha256: 97e2e42f9bea092cd595459411f724850fc539b3721bb00ce75e1fa31bb5913e

Contents?: true

Size: 478 Bytes

Versions: 63

Compression:

Stored size: 478 Bytes

Contents

module VagrantPlugins
  module GuestWindows
    module Cap
      module Halt
        def self.halt(machine)
          # Fix vagrant-windows GH-129, if there's an existing scheduled
          # reboot cancel it so shutdown succeeds
          machine.communicate.execute("shutdown -a", error_check: false)

          # Force shutdown the machine now
          machine.communicate.execute("shutdown /s /t 1 /c \"Vagrant Halt\" /f /d p:4:1")
        end
      end
    end
  end
end

Version data entries

63 entries across 56 versions & 8 rubygems

Version Path
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-272fb27e0536/plugins/guests/windows/cap/halt.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-1cf2a8db4ccb/plugins/guests/windows/cap/halt.rb
vagrant-tiktalik-0.0.3 vendor/bundle/ruby/2.0.0/bundler/gems/vagrant-1e28f1ac31e7/plugins/guests/windows/cap/halt.rb