Sha256: 8016fea1e66872e89480f83687088de79a92e62974d1d5a519c7ceb18488aafa

Contents?: true

Size: 1012 Bytes

Versions: 1

Compression:

Stored size: 1012 Bytes

Contents

require 'beaker-answers/versions/version40'

module BeakerAnswers
  # This class provides answer file information for PE version 2015.3
  #
  # @api private
  class Version20153 < Version40
    # The version of PE that this set of answers is appropriate for
    def self.pe_version_matcher
      /\A2015\.3/
    end

    def generate_answers
      the_answers = super

      return the_answers if @options[:masterless]

      master = only_host_with_role(@hosts, 'master')
      database = only_host_with_role(@hosts, 'database')

      orchestrator_db = {
        :q_orchestrator_database_name     => answer_for(@options, :q_orchestrator_database_name),
        :q_orchestrator_database_user     => answer_for(@options, :q_orchestrator_database_user),
        :q_orchestrator_database_password => answer_for(@options, :q_orchestrator_database_password),
      }
      the_answers[master.name].merge!(orchestrator_db)
      the_answers[database.name].merge!(orchestrator_db)

      the_answers
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
beaker-answers-0.2.0 lib/beaker-answers/versions/version20153.rb