2013-04-03 23:33:20 -07:00

17 lines
373 B
Ruby

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