Vagrant/PostgreSQL: Remove owner and group settings from pg_hba.conf

This keeps postgres as owner and group.

refs #4215
This commit is contained in:
Eric Lippmann 2013-06-03 17:35:19 +02:00
parent fc8584b6f8
commit 62c90f91e0
1 changed files with 0 additions and 2 deletions

View File

@ -37,8 +37,6 @@ class pgsql {
file { '/var/lib/pgsql/data/pg_hba.conf':
content => template('pgsql/pg_hba.conf.erb'),
owner => 'root',
group => 'root',
require => [Package['postgresql-server'], Exec['initdb']],
notify => Service['postgresql']
}