Sha256: 48d4c89d4239e7808a8a9fbf88e5976db27a1a1f636dfe18352eeffbd7da9789
Contents?: true
Size: 391 Bytes
Versions: 63
Compression:
Stored size: 391 Bytes
Contents
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
Version data entries
63 entries across 56 versions & 8 rubygems