17 lines
353 B
Ruby
17 lines
353 B
Ruby
|
module VagrantPlugins
|
||
|
module GuestEsxi
|
||
|
module Cap
|
||
|
class Halt
|
||
|
def self.halt(machine)
|
||
|
begin
|
||
|
machine.communicate.execute("/bin/halt -d 0")
|
||
|
rescue IOError
|
||
|
# Ignore, this probably means connection closed because it
|
||
|
# shut down.
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|