diff options
Diffstat (limited to 'modules/postgresql/manifests')
-rw-r--r-- | modules/postgresql/manifests/init.pp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/postgresql/manifests/init.pp b/modules/postgresql/manifests/init.pp index 7c22c986..fb3ea06b 100644 --- a/modules/postgresql/manifests/init.pp +++ b/modules/postgresql/manifests/init.pp @@ -29,7 +29,7 @@ class postgresql { } file { "postgresql.conf": - path => "$pgsql_data/$name", + path => "$pgsql_data/postgresql.conf", ensure => present, owner => postgres, group => postgres, @@ -39,7 +39,7 @@ class postgresql { } file { 'pg_hba.conf': - path => "$pgsql_data/$name", + path => "$pgsql_data/pg_hba.conf", ensure => present, owner => postgres, group => postgres, @@ -49,7 +49,7 @@ class postgresql { } file { 'pg_ident.conf': - path => "$pgsql_data/$name", + path => "$pgsql_data/pg_ident.conf", ensure => present, owner => postgres, group => postgres, |