Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions manifests/database.pp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@
require => Class['postgresql::server::contrib'],
}

postgresql::server::extension { "amcheck for ${pulpcore::postgresql_db_name}":
database => $pulpcore::postgresql_db_name,
extension => 'amcheck',
require => Class['postgresql::server::contrib'],
}

# pulpcore-content fails to reconnect to the database, so schedule a restart whenever the db changes
# see https://pulp.plan.io/issues/9276 for details
Class['postgresql::server::service'] ~> Service['pulpcore-content.service']
Expand Down