mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-21 00:42:33 -05:00
11 lines
222 B
Ruby
11 lines
222 B
Ruby
module VagrantPlugins
|
|
module DockerProvider
|
|
module Cap
|
|
module HasCommunicator
|
|
def self.has_communicator(machine)
|
|
return machine.provider_config.has_ssh
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|