Sha256: ccf71825d17f47928fcdf4aaa8406301fe8831821c9322bfbfb1f6b81301dffa

Contents?: true

Size: 710 Bytes

Versions: 4

Compression:

Stored size: 710 Bytes

Contents

# Specify the client key for connecting to Puppet Enterprise ENC. This must be specified along with
# --pe-enc-ssl-client-cert in order to work.
# @param parser [OptionParser object] The OptionParser argument
# @param options [Hash] Options hash being constructed; this is modified in this method.
OctocatalogDiff::CatalogDiff::Cli::Options::Option.newoption(:pe_enc_ssl_client_key) do
  has_weight 354

  def parse(parser, options)
    parser.on('--pe-enc-ssl-client-key FILENAME', 'SSL client key to connect to PE ENC') do |x|
      raise Errno::ENOENT, "--pe-enc-ssl-client-key #{x} does not point to a valid file" unless File.file?(x)
      options[:pe_enc_ssl_client_key] = File.read(x)
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
octocatalog-diff-0.5.6 lib/octocatalog-diff/catalog-diff/cli/options/pe_enc_ssl_client_key.rb
octocatalog-diff-0.5.4 lib/octocatalog-diff/catalog-diff/cli/options/pe_enc_ssl_client_key.rb
octocatalog-diff-0.5.3 lib/octocatalog-diff/catalog-diff/cli/options/pe_enc_ssl_client_key.rb
octocatalog-diff-0.5.1 lib/octocatalog-diff/catalog-diff/cli/options/pe_enc_ssl_client_key.rb