Skip to content

Commit a803341

Browse files
committed
Fix incorrect task name in install plan
* previously the install plan fails because the insert_csr_extension was recently renamed and not updated. Additionally, the parameter name changed and was also updated in this commit which is required to complete the install.
1 parent f55d6da commit a803341

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

plans/action/install.pp

+6-6
Original file line numberDiff line numberDiff line change
@@ -183,22 +183,22 @@
183183
# if a csr_attributes.yaml file is already present, the values we need are
184184
# merged with the existing values.
185185

186-
run_plan('peadm::util::insert_csr_extensions', $master_target,
187-
extensions => {
186+
run_plan('peadm::util::insert_csr_extension_requests', $master_target,
187+
extension_requests => {
188188
peadm::oid('peadm_role') => 'puppet/master',
189189
peadm::oid('peadm_availability_group') => 'A',
190190
},
191191
)
192192

193-
run_plan('peadm::util::insert_csr_extensions', $puppetdb_database_target,
194-
extensions => {
193+
run_plan('peadm::util::insert_csr_extension_requests', $puppetdb_database_target,
194+
extension_requests => {
195195
peadm::oid('peadm_role') => 'puppet/puppetdb-database',
196196
peadm::oid('peadm_availability_group') => 'A',
197197
},
198198
)
199199

200-
run_plan('peadm::util::insert_csr_extensions', $puppetdb_database_replica_target,
201-
extensions => {
200+
run_plan('peadm::util::insert_csr_extension_requests', $puppetdb_database_replica_target,
201+
extension_requests => {
202202
peadm::oid('peadm_role') => 'puppet/puppetdb-database',
203203
peadm::oid('peadm_availability_group') => 'B',
204204
},

0 commit comments

Comments
 (0)