diff --git a/doc/puppet_classes/postgresql_cd_3A_3Amain_3A_3Afiles.html b/doc/puppet_classes/postgresql_cd_3A_3Amain_3A_3Afiles.html index a3a450a..16830e2 100644 --- a/doc/puppet_classes/postgresql_cd_3A_3Amain_3A_3Afiles.html +++ b/doc/puppet_classes/postgresql_cd_3A_3Amain_3A_3Afiles.html @@ -121,7 +121,20 @@ 23 24 25 -26 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39
# File 'manifests/main/files.pp', line 6
@@ -134,7 +147,7 @@ class postgresql_cd::main::files (
require postgresql_cd::main::dirs
file { '/var/lib/pgsql/data/pg_hba.conf':
- ensure => file,
+ ensure => file,
owner => 'postgres',
group => 'postgres',
mode => '0600',
@@ -145,6 +158,19 @@ class postgresql_cd::main::files (
content => template('postgresql_cd/pg_hba.conf.erb'),
notify => Service[$pl_service],
}
+
+ file { '/var/lib/pgsql/data/postgresql.conf':
+ ensure => file,
+ owner => 'postgres',
+ group => 'postgres',
+ mode => '0600',
+ selrange => s0,
+ selrole => object_r,
+ seltype => postgresql_db_t,
+ seluser => unconfined_u,
+ content => template('postgresql_cd/postgresql.conf.erb'),
+ notify => Service[$pl_service],
+ }
}
}