Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
coreone committed Aug 11, 2023
1 parent 27f87c8 commit be4f369
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions manifests/candlepin.pp
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@

# Generate and cache the password on the master once
# In multi-puppetmaster setups, the user should specify their own
$final_keystore_password = pick_default(
$final_keystore_password = pick(
$keystore_password, extlib::cache_data('foreman_cache_data', $keystore_password_file, extlib::random_password(32))
)
$final_truststore_password = pick_default(
$final_truststore_password = pick(
$truststore_password, extlib::cache_data('foreman_cache_data', $truststore_password_file, extlib::random_password(32))
)
$keystore_password_path = "${pki_dir}/${keystore_password_file}"
Expand Down
2 changes: 1 addition & 1 deletion manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
Boolean $generate = true,
Boolean $regenerate = false,
Boolean $deploy = true,
String[1] $ca_key_password = $certs::params::ca_key_password,
String[10] $ca_key_password = $certs::params::ca_key_password,
String $ca_common_name = $certs::params::ca_common_name,
String[2,2] $country = 'US',
String $state = 'North Carolina',
Expand Down

0 comments on commit be4f369

Please sign in to comment.