Sha256: c322a22fc7255b8fcd608566bfb3114bb8084ce21507e5c7b2bd396354ea82f7

Contents?: true

Size: 1.34 KB

Versions: 9

Compression:

Stored size: 1.34 KB

Contents

# frozen_string_literal: true

require 'bolt/logger'
require 'bolt/node/errors'
require 'bolt/transport/simple'

module Bolt
  module Transport
    class SSH < Simple
      def initialize
        super

        require 'net/ssh'
        require 'net/scp'
        begin
          require 'net/ssh/krb'
        rescue LoadError
          logger.debug("Authentication method 'gssapi-with-mic' (Kerberos) is not available.")
        end
        @transport_logger = Logging.logger[Net::SSH]
        @transport_logger.level = :warn
      end

      def with_connection(target)
        if target.transport_config['ssh-command'] && !target.transport_config['native-ssh']
          Bolt::Logger.warn_once("ssh-command and native-ssh conflict",
                                 "native-ssh must be true to use ssh-command")
        end

        conn = if target.transport_config['native-ssh']
                 ExecConnection.new(target)
               else
                 Connection.new(target, @transport_logger)
               end
        conn.connect
        yield conn
      ensure
        begin
          conn&.disconnect
        rescue StandardError => e
          logger.info("Failed to close connection to #{target.safe_name} : #{e.message}")
        end
      end
    end
  end
end

require 'bolt/transport/ssh/connection'
require 'bolt/transport/ssh/exec_connection'

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
bolt-2.25.0 lib/bolt/transport/ssh.rb
bolt-2.24.1 lib/bolt/transport/ssh.rb
bolt-2.24.0 lib/bolt/transport/ssh.rb
bolt-2.23.0 lib/bolt/transport/ssh.rb
bolt-2.22.0 lib/bolt/transport/ssh.rb
bolt-2.21.0 lib/bolt/transport/ssh.rb
bolt-2.20.0 lib/bolt/transport/ssh.rb
bolt-2.19.0 lib/bolt/transport/ssh.rb
bolt-2.18.0 lib/bolt/transport/ssh.rb