Skip to content

Commit dbfffd8

Browse files
authored
Merge pull request #1434 from puppetlabs/gh-1426-fix_mismatched_data_types
(GH-1426) - Update value to accept array
2 parents 0b2b849 + 36674b3 commit dbfffd8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

manifests/server/config_entry.pp

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
# @param path Path for postgresql.conf
66
#
77
define postgresql::server::config_entry (
8-
Enum['present', 'absent'] $ensure = 'present',
9-
Optional[Variant[String[1], Numeric]] $value = undef,
10-
Variant[Boolean, String[1]] $path = false
8+
Enum['present', 'absent'] $ensure = 'present',
9+
Optional[Variant[String[1], Numeric, Array[String[1]]]] $value = undef,
10+
Variant[Boolean, String[1]] $path = false
1111
) {
1212
$postgresql_conf_path = $postgresql::server::postgresql_conf_path
1313

0 commit comments

Comments
 (0)