Skip to content

Commit

Permalink
Fix data type for $openldap::server::globalconf::value
Browse files Browse the repository at this point in the history
openldap_global_conf also support passing arrays of values, so add this
to the corresponding data type.

Fixes #317
  • Loading branch information
smortex committed Sep 7, 2021
1 parent 40481a7 commit 3654fed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifests/server/globalconf.pp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# See README.md for details.
define openldap::server::globalconf (
Variant[String[1],Hash[String[1], String[1]]] $value,
Variant[String[1],Array[String[1]],Hash[String[1], Variant[String[1],Array[String[1]]]]] $value,
Enum['present', 'absent'] $ensure = 'present',
) {
if ! defined(Class['openldap::server']) {
Expand Down

0 comments on commit 3654fed

Please sign in to comment.