vagrant/plugins/providers/docker/cap/has_communicator.rb

14 lines
291 B
Ruby

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
module VagrantPlugins
module DockerProvider
module Cap
module HasCommunicator
def self.has_communicator(machine)
return machine.provider_config.has_ssh
end
end
end
end
end