We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a73385 commit 3ea57a5Copy full SHA for 3ea57a5
manifests/params.pp
@@ -24,7 +24,12 @@
24
} else {
25
$manage_pg_repo = false
26
}
27
- $postgres_version = '9.6'
+
28
+ if $puppetdb_version in ['latest','present'] or versioncmp($puppetdb_version, '7.0.0') >= 0 {
29
+ $postgres_version = '11'
30
+ } else {
31
+ $postgres_version = '9.6'
32
+ }
33
34
# The remaining database settings are not used for an embedded database
35
$database_host = 'localhost'
0 commit comments