2013-11-05 21:21:00 +01:00
|
|
|
class zulip_internal::postgres_appdb {
|
|
|
|
include zulip_internal::postgres_common
|
2015-12-26 05:46:26 +01:00
|
|
|
include zulip::postgres_appdb_base
|
2013-07-25 20:56:23 +02:00
|
|
|
|
2016-07-21 06:09:54 +02:00
|
|
|
file { "/etc/postgresql/${zulip::base::postgres_version}/main/pg_hba.conf":
|
|
|
|
require => Package["postgresql-${zulip::base::postgres_version}"],
|
2013-07-25 20:56:23 +02:00
|
|
|
ensure => file,
|
|
|
|
owner => "postgres",
|
|
|
|
group => "postgres",
|
|
|
|
mode => 640,
|
2013-11-05 21:21:00 +01:00
|
|
|
source => "puppet:///modules/zulip_internal/postgresql/pg_hba.conf",
|
2013-07-25 20:56:23 +02:00
|
|
|
}
|
|
|
|
}
|