Sha256: f81762fbbeacf5cb125213add8b22880b5daf8ee05f18eacd91644a12b9b52d1

Contents?: true

Size: 491 Bytes

Versions: 8

Compression:

Stored size: 491 Bytes

Contents

# frozen_string_literal: true

require 'bolt/error'
require 'bolt/config/transport/base'

module Bolt
  class Config
    module Transport
      class Remote < Base
        OPTIONS = {
          "run-on" => { type: String,
                        desc: "The proxy target that the task executes on." }
        }.freeze

        DEFAULTS = {
          "run-on" => "localhost"
        }.freeze

        private def filter(unfiltered)
          unfiltered
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
bolt-2.8.0 lib/bolt/config/transport/remote.rb
bolt-2.7.0 lib/bolt/config/transport/remote.rb
bolt-2.6.0 lib/bolt/config/transport/remote.rb
bolt-2.5.0 lib/bolt/config/transport/remote.rb
bolt-2.4.0 lib/bolt/config/transport/remote.rb
bolt-2.3.1 lib/bolt/config/transport/remote.rb
bolt-2.3.0 lib/bolt/config/transport/remote.rb
bolt-2.2.0 lib/bolt/config/transport/remote.rb