Displaying 2 results from an estimated 2 matches for "c46b360".
Did you mean:
  746360
  
2009 Jun 23
1
[PATCH server] add postgres permissions requires prior to starting service
...require the user/hosts permissions to be setup prior to starting postgres
---
 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..381d67c 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],
+...
2009 Jun 23
1
[PATCH server] added ovirt-wait4service and invokation in installer to wait for psql/ldap
...command => "/bin/sed -i -e 's/management.priv.ovirt.org/$ipa_host/' /usr/share/ovirt-server/config/ldap.yml",
                 require => Package[ovirt-server]
diff --git a/installer/modules/ovirt/manifests/postgres.pp b/installer/modules/ovirt/manifests/postgres.pp
index c46b360..9a4afa1 100644
--- a/installer/modules/ovirt/manifests/postgres.pp
+++ b/installer/modules/ovirt/manifests/postgres.pp
@@ -45,14 +45,19 @@ class postgres::bundled{
                 hasstatus => true
         }
 
+        single_exec { "wait_for_postgres" :
+                command =&g...