Sha256: cbbff63be0149e6bab405c385ece15960ebc2de41bb3a9b881da36a36b0d278f

Contents?: true

Size: 1.41 KB

Versions: 62

Compression:

Stored size: 1.41 KB

Contents

module VagrantPlugins
  module DockerProvider
    module Action
      class PrepareSSH
        def initialize(app, env)
          @app = app
        end

        def call(env)
          # If we aren't using a host VM, then don't worry about it
          return @app.call(env) if !env[:machine].provider.host_vm?

          env[:machine].ui.output(I18n.t(
            "docker_provider.ssh_through_host_vm"))

          # Modify the SSH info to be the host VM's info
          env[:ssh_info] = env[:machine].provider.host_vm.ssh_info

          # Modify the SSH options for when we `vagrant ssh`...
          ssh_opts = env[:ssh_opts] || {}

          # Build the command we'll execute within the Docker host machine:
          ssh_command = env[:machine].communicate.container_ssh_command
          if !Array(ssh_opts[:extra_args]).empty?
            ssh_command << " #{Array(ssh_opts[:extra_args]).join(" ")}"
          end

          # Modify the SSH options for the original command:
          # Append "-t" to force a TTY allocation
          ssh_opts[:extra_args] = ["-t"]
          # Enable Agent forwarding when requested for the target VM
          if env[:machine].ssh_info[:forward_agent]
            ssh_opts[:extra_args] << "-o ForwardAgent=yes"
          end
          ssh_opts[:extra_args] << ssh_command

          # Set the opts
          env[:ssh_opts] = ssh_opts

          @app.call(env)
        end
      end
    end
  end
end

Version data entries

62 entries across 55 versions & 7 rubygems

Version Path
vagrant-unbundled-2.3.6.0 plugins/providers/docker/action/prepare_ssh.rb
tamtam-vagrant-reload-1.2.1 vendor/cache/vagrant-2092df529ae7/plugins/providers/docker/action/prepare_ssh.rb
vagrant-unbundled-2.3.3.0 plugins/providers/docker/action/prepare_ssh.rb
vagrant-unbundled-2.3.2.0 plugins/providers/docker/action/prepare_ssh.rb
vagrant-unbundled-2.2.19.0 plugins/providers/docker/action/prepare_ssh.rb
vagrant-unbundled-2.2.18.0 plugins/providers/docker/action/prepare_ssh.rb
vagrant-unbundled-2.2.16.0 plugins/providers/docker/action/prepare_ssh.rb
vagrant-unbundled-2.2.14.0 plugins/providers/docker/action/prepare_ssh.rb
vagrant-aws-mkubenka-0.7.2.pre.24 vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-22795b161bf6/plugins/providers/docker/action/prepare_ssh.rb
vagrant-unbundled-2.2.10.0 plugins/providers/docker/action/prepare_ssh.rb
vagrant-unbundled-2.2.9.0 plugins/providers/docker/action/prepare_ssh.rb
vagrant-unbundled-2.2.8.0 plugins/providers/docker/action/prepare_ssh.rb
vagrant-unbundled-2.2.7.0 plugins/providers/docker/action/prepare_ssh.rb
vagrant-unbundled-2.2.6.2 plugins/providers/docker/action/prepare_ssh.rb
vagrant-unbundled-2.2.6.1 plugins/providers/docker/action/prepare_ssh.rb
vagrant-unbundled-2.2.6.0 plugins/providers/docker/action/prepare_ssh.rb
vagrant-unbundled-2.2.5.0 plugins/providers/docker/action/prepare_ssh.rb
vagrant-unbundled-2.2.4.0 plugins/providers/docker/action/prepare_ssh.rb
vagrant-unbundled-2.2.3.0 plugins/providers/docker/action/prepare_ssh.rb
vagrant-unbundled-2.2.2.0 plugins/providers/docker/action/prepare_ssh.rb