19 lines
391 B
Ruby
19 lines
391 B
Ruby
|
module VagrantPlugins
|
||
|
module DockerProvider
|
||
|
module Action
|
||
|
# This middleware is used with Call to test if this machine supports
|
||
|
# SSH.
|
||
|
class HasSSH
|
||
|
def initialize(app, env)
|
||
|
@app = app
|
||
|
end
|
||
|
|
||
|
def call(env)
|
||
|
env[:result] = env[:machine].provider_config.has_ssh
|
||
|
@app.call(env)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|