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 319ea41 commit 53f23f1Copy full SHA for 53f23f1
manifests/database/postgresql.pp
@@ -59,8 +59,9 @@
59
# Only install pg_trgm extension, if database it is actually managed by the module
60
if $manage_database {
61
62
- # from postgresql version 10 onwards, this extension is no longer inside the contrib package, but is being bundled with the postgresql package itself
63
- if (versioncmp($postgres_version, '10') < 0) {
+ # from postgresql version 10 onwards, this extension is no longer inside
+ # the contrib package, but is being bundled with the postgresql package itself
64
+ if versioncmp($postgres_version, '10') < 0 {
65
# get the pg contrib to use pg_trgm extension
66
include postgresql::server::contrib
67
}
0 commit comments