2014-01-17 01:18:54 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module GuestTinyCore
|
|
|
|
module Cap
|
|
|
|
class Halt
|
|
|
|
def self.halt(machine)
|
|
|
|
begin
|
|
|
|
machine.communicate.sudo("poweroff")
|
2016-08-03 18:34:03 +00:00
|
|
|
rescue IOError, Vagrant::Errors::SSHDisconnected
|
2014-01-17 01:18:54 +00:00
|
|
|
# Do nothing, because it probably means the machine shut down
|
|
|
|
# and SSH connection was lost.
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|