Joey Boggs
2009-Jun-23 20:56 UTC
[Ovirt-devel] [PATCH server] updated: add postgres permissions requires prior to starting service
---
installer/modules/ovirt/manifests/postgres.pp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/installer/modules/ovirt/manifests/postgres.pp
b/installer/modules/ovirt/manifests/postgres.pp
index c46b360..36bcdc0 100644
--- a/installer/modules/ovirt/manifests/postgres.pp
+++ b/installer/modules/ovirt/manifests/postgres.pp
@@ -41,7 +41,7 @@ class postgres::bundled{
service {"postgresql" :
ensure => running,
enable => true,
- require => Single_exec[initialize_db],
+ require =>
[Single_exec[initialize_db],Exec[postgres_add_localhost_trust],Exec[postgres_add_all_trust]],
hasstatus => true
}
--
1.6.2.2
Mohammed Morsi
2009-Jun-24 14:25 UTC
[Ovirt-devel] [PATCH server] updated: add postgres permissions requires prior to starting service
Joey Boggs wrote:> --- > installer/modules/ovirt/manifests/postgres.pp | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/installer/modules/ovirt/manifests/postgres.pp b/installer/modules/ovirt/manifests/postgres.pp > index c46b360..36bcdc0 100644 > --- a/installer/modules/ovirt/manifests/postgres.pp > +++ b/installer/modules/ovirt/manifests/postgres.pp > @@ -41,7 +41,7 @@ class postgres::bundled{ > service {"postgresql" : > ensure => running, > enable => true, > - require => Single_exec[initialize_db], > + require => [Single_exec[initialize_db],Exec[postgres_add_localhost_trust],Exec[postgres_add_all_trust]], > hasstatus => true > } > >ACK