Displaying 5 results from an estimated 5 matches for "postgres_add_localhost_trust".
2009 Jul 06
1
[PATCH server] add ipv6 postgres trust
...-- 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],Exec[postgres_add_localhost_trust],Exec[postgres_add_all_trust]],
+ require => [Single_exec[initialize_db],Exec[postgres_add_localhost_trust],Exec[postgres_add_all_trust],Exec[postgres_add_ipv6_loopback_trust]],
hasstatus => true
}
@@ -79,6 +79,12 @@ class postgres::bundled{...
2009 Aug 21
1
[PATCH server] update installer exec items to single_exec where applicable
...a/installer/modules/ovirt/manifests/postgres.pp
+++ b/installer/modules/ovirt/manifests/postgres.pp
@@ -41,18 +41,18 @@ class postgres::bundled{
service {"postgresql" :
ensure => running,
enable => true,
- require => [Single_exec[initialize_db],Exec[postgres_add_localhost_trust],Exec[postgres_add_all_trust],Exec[postgres_add_ipv6_loopback_trust]],
+ require => [Single_exec[initialize_db],Exec[postgres_add_localhost_trust],Single_exec[postgres_add_all_trust],Exec[postgres_add_ipv6_loopback_trust]],
hasstatus => true
}...
2009 Jun 05
0
[PATCH server] update postgres for ipv6 support, or db:migrate will fail
...d{
notify => Service[postgresql]
}
+ single_exec{"postgres_add_ipv6_localhost_trust":
+ command => "/bin/echo 'host all all ::1/128 trust' >> /var/lib/pgsql/data/pg_hba.conf",
+ require => Exec[postgres_add_localhost_trust],
+ notify => Service[postgresql]
+ }
+
file { "/etc/ovirt-server/" :
ensure => directory,
- require => Exec[postgres_add_localhost_trust]
+ require => [Exec[postgres_add_localhost_trust],Single_exec[postgre...
2009 Jun 23
1
[PATCH server] add postgres permissions requires prior to starting service
...nifests/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
2009 Jun 23
1
[PATCH server] added ovirt-wait4service and invokation in installer to wait for psql/ldap
...es_add_all_trust":
command => "/bin/echo 'local all all trust' > /var/lib/pgsql/data/pg_hba.conf",
require => Single_exec[initialize_db],
- notify => Service[postgresql]
+ notify => Single_exec[wait_for_postgres]
}
exec {"postgres_add_localhost_trust":
command => "/bin/echo 'host all all 127.0.0.1 255.255.255.0 trust' >> /var/lib/pgsql/data/pg_hba.conf",
require => Exec[postgres_add_all_trust],
- notify => Service[postgresql]
+ notify => Single_exec[wait_for_postgres]...