Sha256: c0f50e568b23ca5390dd4630fbb6ae5bb8977192ac867ca3e6b3d34e20e25635

Contents?: true

Size: 897 Bytes

Versions: 4

Compression:

Stored size: 897 Bytes

Contents

# Specify the SSL client key for Puppet Master. This makes it possible to authenticate with a
# client certificate keypair to the Puppet Master.
# @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(:puppet_master_ssl_client_key) do
  has_weight 320

  def parse(parser, options)
    OctocatalogDiff::CatalogDiff::Cli::Options.option_globally_or_per_branch(
      parser: parser,
      options: options,
      cli_name: 'puppet-master-ssl-client-key',
      option_name: 'puppet_master_ssl_client_key',
      desc: 'Full path to key file for SSL client auth to Puppet Master',
      validator: ->(x) { File.file?(x) || raise(Errno::ENOENT, "Suggested key #{x} does not exist") },
      translator: ->(x) { File.read(x) }
    )
  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/puppet_master_ssl_client_key.rb
octocatalog-diff-0.5.4 lib/octocatalog-diff/catalog-diff/cli/options/puppet_master_ssl_client_key.rb
octocatalog-diff-0.5.3 lib/octocatalog-diff/catalog-diff/cli/options/puppet_master_ssl_client_key.rb
octocatalog-diff-0.5.1 lib/octocatalog-diff/catalog-diff/cli/options/puppet_master_ssl_client_key.rb