We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45a54b1 commit 2d6bd1cCopy full SHA for 2d6bd1c
manifests/ca/params.pp
@@ -15,5 +15,5 @@
15
'CN' => "automated-ca ${name} for ${facts['networking']['domain']}",
16
},
17
) {
18
- $ca_options = merge($trocla_options, { become_ca => true, render => { certonly => true } })
+ $ca_options = $trocla_options + { become_ca => true, render => { certonly => true } }
19
}
manifests/config.pp
@@ -52,7 +52,7 @@
52
name_constraints => $x509_profile_domain_constraints,
53
54
55
- $merged_profiles = stdlib::merge($default_profiles,$profiles)
+ $merged_profiles = $default_profiles + $profiles
56
57
58
# Deploy default config file and link it for trocla cli lookup
0 commit comments