2014-03-30 16:22:18 +00:00
|
|
|
module VagrantPlugins
|
2014-09-11 08:52:58 +00:00
|
|
|
module GuestSUSE
|
2014-03-30 16:22:18 +00:00
|
|
|
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
|