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

17 lines
378 B
Ruby

module VagrantPlugins
module GuestSUSE
module Cap
class Halt
def self.halt(machine)
begin
machine.communicate.sudo("/sbin/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