mirror of
https://github.com/zulip/zulip.git
synced 2025-11-06 06:53:25 +00:00
There's no longer a reason to have copies of forked postgres configuration files in our repository, since some time ago we merged the features of these configuration files into the main postgres_appdb_tuned.pp.
14 lines
422 B
Puppet
14 lines
422 B
Puppet
class zulip_ops::postgres_appdb {
|
|
include zulip_ops::postgres_common
|
|
include zulip::postgres_appdb_tuned
|
|
|
|
file { "/etc/postgresql/${zulip::base::postgres_version}/main/pg_hba.conf":
|
|
require => Package["postgresql-${zulip::base::postgres_version}"],
|
|
ensure => file,
|
|
owner => "postgres",
|
|
group => "postgres",
|
|
mode => 640,
|
|
source => "puppet:///modules/zulip_ops/postgresql/pg_hba.conf",
|
|
}
|
|
}
|