2013-07-11 01:21:06 +00:00
|
|
|
module VagrantPlugins
|
2013-08-01 01:07:04 +00:00
|
|
|
module GuestDarwin
|
2013-07-11 01:21:06 +00:00
|
|
|
module Cap
|
|
|
|
class Halt
|
|
|
|
def self.halt(machine)
|
|
|
|
begin
|
|
|
|
machine.communicate.sudo("shutdown -h now")
|
|
|
|
rescue IOError
|
|
|
|
# Do nothing because SSH connection closed and it probably
|
|
|
|
# means the VM just shut down really fast.
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|