beaker-answers 0.21.0 → 0.22.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/beaker-answers/pe_conf.rb +2 -2
- data/lib/beaker-answers/version.rb +1 -1
- data/spec/beaker-answers/pe_conf_spec.rb +4 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f66dd2539d7a9d0020f95a6cfd5ec4003fe1d5e1
|
4
|
+
data.tar.gz: be9af2f3f1358ded03c7bd483c6f8e3be5a3c7a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 00c044969eb9a0d895fece3b021bb7a209c0e8e50f492a4b951738e65a8597c7424a4a7b73a875db18449393af9ddb80daffcd00415697fb43a5240b541daf1f
|
7
|
+
data.tar.gz: e5ed1f6f202c3531f4e29b1c6cd7cd016229c497ce825db355ab6b8c032270f1656816ce84db03adeb175e6003b3b5394d95bf105901631b7b4c58bac45234ec
|
@@ -203,8 +203,8 @@ module BeakerAnswers
|
|
203
203
|
def postgres_password_answers(pe_conf, meep_schema_version)
|
204
204
|
case meep_schema_version
|
205
205
|
when '1.0','2.0'
|
206
|
-
pe_conf["puppet_enterprise::database_ssl"] =
|
207
|
-
pe_conf["puppet_enterprise::database_cert_auth"] =
|
206
|
+
pe_conf["puppet_enterprise::database_ssl"] = true
|
207
|
+
pe_conf["puppet_enterprise::database_cert_auth"] = true
|
208
208
|
pe_conf["puppet_enterprise::puppetdb::start_timeout"] = 300
|
209
209
|
pe_conf["puppet_enterprise::activity_database_password"] = "PASSWORD"
|
210
210
|
pe_conf["puppet_enterprise::classifier_database_password"] = "PASSWORD"
|
@@ -109,8 +109,8 @@ describe 'BeakerAnswers::PeConf' do
|
|
109
109
|
end
|
110
110
|
let(:gold_pe_postgres_password_configuration_hash) do
|
111
111
|
{
|
112
|
-
"puppet_enterprise::database_cert_auth" =>
|
113
|
-
"puppet_enterprise::database_ssl" =>
|
112
|
+
"puppet_enterprise::database_cert_auth" => true,
|
113
|
+
"puppet_enterprise::database_ssl" => true,
|
114
114
|
"puppet_enterprise::activity_database_password" => "PASSWORD",
|
115
115
|
"puppet_enterprise::classifier_database_password" => "PASSWORD",
|
116
116
|
"puppet_enterprise::orchestrator_database_password" => "PASSWORD",
|
@@ -157,8 +157,8 @@ describe 'BeakerAnswers::PeConf' do
|
|
157
157
|
"puppet_enterprise::profile::database" => basic_hosts[1].hostname,
|
158
158
|
"agent_platforms" => ['el_6_x86_64'],
|
159
159
|
"meep_schema_version" => "2.0",
|
160
|
-
"puppet_enterprise::database_cert_auth" =>
|
161
|
-
"puppet_enterprise::database_ssl" =>
|
160
|
+
"puppet_enterprise::database_cert_auth" => true,
|
161
|
+
"puppet_enterprise::database_ssl" => true,
|
162
162
|
"puppet_enterprise::activity_database_password" => "PASSWORD",
|
163
163
|
"puppet_enterprise::classifier_database_password" => "PASSWORD",
|
164
164
|
"puppet_enterprise::orchestrator_database_password" => "PASSWORD",
|