search for: postgres_add_ipv6_localhost_trust

Displaying 1 result from an estimated 1 matches for "postgres_add_ipv6_localhost_trust".

2009 Jun 05
0
[PATCH server] update postgres for ipv6 support, or db:migrate will fail
...les/ovirt/manifests/postgres.pp index 6620a88..1cea6a1 100644 --- a/installer/modules/ovirt/manifests/postgres.pp +++ b/installer/modules/ovirt/manifests/postgres.pp @@ -78,9 +78,15 @@ class postgres::bundled{ 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/...