vagrant/plugins/guests/debian8/cap/halt.rb

17 lines
374 B
Ruby
Raw Normal View History

module VagrantPlugins
module GuestDebian8
module Cap
class Halt
def self.halt(machine)
begin
machine.communicate.sudo("shutdown -h -H")
rescue IOError
# Do nothing, because it probably means the machine shut down
# and SSH connection was lost.
end
end
end
end
end
end