Add a Communicator#reset! method

This commit is contained in:
Chris Roberts 2018-11-12 15:31:27 -08:00
parent 11fe0a84d8
commit c2aa1e207f
1 changed files with 7 additions and 0 deletions

View File

@ -117,6 +117,13 @@ module Vagrant
# @see #execute
def test(command, opts=nil)
end
# Reset the communicator. For communicators which establish
# a persistent connection to the remote machine, this connection
# should be terminated and re-established. The communicator
# instance should be in a "fresh" state after calling this method.
def reset!
end
end
end
end