mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-23 01:46:51 -05:00
16 lines
403 B
Ruby
16 lines
403 B
Ruby
module VagrantPlugins
|
|
module GuestTinyCore
|
|
module Cap
|
|
class Halt
|
|
def self.halt(machine)
|
|
begin
|
|
machine.communicate.sudo("poweroff")
|
|
rescue IOError, Vagrant::Errors::SSHDisconnected
|
|
# Do nothing, because it probably means the machine shut down
|
|
# and SSH connection was lost.
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|