Sha256: 30e85e014bfec43dbf2b321f7cafd6af1bbad7ed42f2bf84c6f78b1b9928bd22

Contents?: true

Size: 812 Bytes

Versions: 18

Compression:

Stored size: 812 Bytes

Contents

require 'lino'

require_relative 'base'
require_relative 'mixins/global_config'
require_relative 'mixins/ssl_config'

module RubyEasyRSA
  module Commands
    class ExportP12 < Base
      include Mixins::GlobalConfig
      include Mixins::SSLConfig

      def configure_command(builder, opts)
        filename_base = opts[:filename_base]
        include_ca = opts[:include_ca].nil? ? true : opts[:include_ca]
        include_key = opts[:include_key].nil? ? true : opts[:include_key]

        builder = super(builder, opts)
        builder = builder.with_subcommand('export-p12')
        builder = builder.with_argument(filename_base)
        builder = builder.with_argument('noca') unless include_ca
        builder = builder.with_argument('nokey') unless include_key
        builder
      end
    end
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
ruby_easy_rsa-0.10.0.pre.7 lib/ruby_easy_rsa/commands/export_p12.rb
ruby_easy_rsa-0.10.0.pre.6 lib/ruby_easy_rsa/commands/export_p12.rb
ruby_easy_rsa-0.10.0.pre.5 lib/ruby_easy_rsa/commands/export_p12.rb
ruby_easy_rsa-0.10.0.pre.4 lib/ruby_easy_rsa/commands/export_p12.rb
ruby_easy_rsa-0.10.0.pre.3 lib/ruby_easy_rsa/commands/export_p12.rb
ruby_easy_rsa-0.10.0.pre.2 lib/ruby_easy_rsa/commands/export_p12.rb
ruby_easy_rsa-0.10.0.pre.1 lib/ruby_easy_rsa/commands/export_p12.rb
ruby_easy_rsa-0.9.0 lib/ruby_easy_rsa/commands/export_p12.rb
ruby_easy_rsa-0.8.0.pre.1 lib/ruby_easy_rsa/commands/export_p12.rb
ruby_easy_rsa-0.7.0 lib/ruby_easy_rsa/commands/export_p12.rb
ruby_easy_rsa-0.6.0.pre.2 lib/ruby_easy_rsa/commands/export_p12.rb
ruby_easy_rsa-0.6.0.pre.1 lib/ruby_easy_rsa/commands/export_p12.rb
ruby_easy_rsa-0.5.0 lib/ruby_easy_rsa/commands/export_p12.rb
ruby_easy_rsa-0.4.0.pre.1 lib/ruby_easy_rsa/commands/export_p12.rb
ruby_easy_rsa-0.3.0 lib/ruby_easy_rsa/commands/export_p12.rb
ruby_easy_rsa-0.2.0.pre.11 lib/ruby_easy_rsa/commands/export_p12.rb
ruby_easy_rsa-0.2.0.pre.10 lib/ruby_easy_rsa/commands/export_p12.rb
ruby_easy_rsa-0.2.0.pre.9 lib/ruby_easy_rsa/commands/export_p12.rb