From 62c90f91e033fed5f92c3ec2fcfc774c3291b81d Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Mon, 3 Jun 2013 17:35:19 +0200 Subject: [PATCH] Vagrant/PostgreSQL: Remove owner and group settings from pg_hba.conf This keeps postgres as owner and group. refs #4215 --- .vagrant-puppet/modules/pgsql/manifests/init.pp | 2 -- 1 file changed, 2 deletions(-) diff --git a/.vagrant-puppet/modules/pgsql/manifests/init.pp b/.vagrant-puppet/modules/pgsql/manifests/init.pp index 18434a71a..36e12bb11 100644 --- a/.vagrant-puppet/modules/pgsql/manifests/init.pp +++ b/.vagrant-puppet/modules/pgsql/manifests/init.pp @@ -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'] }