Skip to content
This repository was archived by the owner on Mar 28, 2019. It is now read-only.

Commit 88c2f89

Browse files
author
Tristan Helmich
committed
Ensure future parser compatibility (quote string)
Since Puppet 3.5.1 the future parser no longer matches upper case words in a selector statement as they are treated as a custom resource type. See https://tickets.puppetlabs.com/browse/PUP-2800?focusedCommentId=76016&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-76016 for details.
1 parent 5f3746d commit 88c2f89

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

manifests/storeconfig/postgresql.pp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@
3737
# ---
3838
# Install the pg gem
3939
$package_name = $::operatingsystem ? {
40-
FreeBSD => 'databases/rubygem-pg',
41-
default => 'pg',
40+
'FreeBSD' => 'databases/rubygem-pg',
41+
default => 'pg',
4242
}
4343
$package_provider = $::operatingsystem ? {
44-
FreeBSD => undef,
45-
default => gem,
44+
'FreeBSD' => undef,
45+
default => gem,
4646
}
4747
package { 'pg':
4848
ensure => installed,

0 commit comments

Comments
 (0)