Sha256: 032d56541f3f04b844f9a46226d046ecdc092b8395c379f2cb2cc8faef6a6ac0

Contents?: true

Size: 936 Bytes

Versions: 11

Compression:

Stored size: 936 Bytes

Contents

# frozen_string_literal: true

# Specify the CA certificate for Puppet Master. If specified, this will enable SSL verification
# that the certificate being presented has been signed by this CA, and that the common name
# matches the name you are using to connecting.
# @param parser [OptionParser object] The OptionParser argument
# @param options [Hash] Options hash being constructed; this is modified in this method.
OctocatalogDiff::Cli::Options::Option.newoption(:puppet_master_ssl_ca) do
  has_weight 320

  def parse(parser, options)
    OctocatalogDiff::Cli::Options.option_globally_or_per_branch(
      parser: parser,
      options: options,
      cli_name: 'puppet-master-ssl-ca',
      option_name: 'puppet_master_ssl_ca',
      desc: 'Full path to CA certificate that signed the Puppet Master certificate',
      validator: ->(x) { File.file?(x) || raise(Errno::ENOENT, "SSL CA cert #{x} does not exist") }
    )
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
octocatalog-diff-1.5.0 lib/octocatalog-diff/cli/options/puppet_master_ssl_ca.rb
octocatalog-diff-1.4.1 lib/octocatalog-diff/cli/options/puppet_master_ssl_ca.rb
octocatalog-diff-1.4.0 lib/octocatalog-diff/cli/options/puppet_master_ssl_ca.rb
octocatalog-diff-1.3.0 lib/octocatalog-diff/cli/options/puppet_master_ssl_ca.rb
octocatalog-diff-1.2.0 lib/octocatalog-diff/cli/options/puppet_master_ssl_ca.rb
octocatalog-diff-1.1.0 lib/octocatalog-diff/cli/options/puppet_master_ssl_ca.rb
octocatalog-diff-1.0.4 lib/octocatalog-diff/cli/options/puppet_master_ssl_ca.rb
octocatalog-diff-1.0.3 lib/octocatalog-diff/cli/options/puppet_master_ssl_ca.rb
octocatalog-diff-1.0.2 lib/octocatalog-diff/cli/options/puppet_master_ssl_ca.rb
octocatalog-diff-1.0.1 lib/octocatalog-diff/cli/options/puppet_master_ssl_ca.rb
octocatalog-diff-1.0.0 lib/octocatalog-diff/cli/options/puppet_master_ssl_ca.rb