2013-10-09 04:47:32 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module GuestEsxi
|
|
|
|
module Cap
|
|
|
|
class Halt
|
|
|
|
def self.halt(machine)
|
|
|
|
begin
|
|
|
|
machine.communicate.execute("/bin/halt -d 0")
|
2016-08-03 18:34:03 +00:00
|
|
|
rescue IOError, Vagrant::Errors::SSHDisconnected
|
2013-10-09 04:47:32 +00:00
|
|
|
# Ignore, this probably means connection closed because it
|
|
|
|
# shut down.
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|