Displaying 2 results from an estimated 2 matches for "postgres_add_ipv6_loopback_trust".
2009 Aug 21
1
[PATCH server] update installer exec items to single_exec where applicable
.../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
}
single_exec {"create_ovirt_db":
command => "...
2009 Jul 06
1
[PATCH server] add ipv6 postgres trust
...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{
notify => Service[postgresql]
}
+ exec {"postgres_add_ipv6_loopback_trust":
+ command => "/bin/echo 'host all all ::1/128 trus...