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

17 lines
407 B
Ruby
Raw Normal View History

2013-04-04 06:33:20 +00:00
module VagrantPlugins
module GuestLinux
module Cap
class Halt
def self.halt(machine)
begin
machine.communicate.sudo("shutdown -h now")
rescue IOError, Vagrant::Errors::SSHDisconnected
2013-04-04 06:33:20 +00:00
# Do nothing, because it probably means the machine shut down
# and SSH connection was lost.
end
end
end
end
end
end