We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c74c2d7 commit 4ac87a6Copy full SHA for 4ac87a6
manifests/database/postgresql.pp
@@ -5,7 +5,7 @@
5
cwd => '/',
6
}
7
8
- include postgresql::client, postgresql::server
+ include postgresql::client, postgresql::server, postgresql::server::contrib
9
include foreman::database::postgresql::encoding
10
11
postgresql::server::db { $foreman::db_database:
@@ -16,4 +16,10 @@
16
locale => 'en_US.utf8',
17
require => Class['foreman::database::postgresql::encoding'],
18
19
+
20
+ postgresql::server::extension { "amcheck for ${foreman::db_database}":
21
+ database => $foreman::db_database,
22
+ extension => 'amcheck',
23
+ require => Class['postgresql::server::contrib'],
24
+ }
25
0 commit comments