search for: ovirt_develop

Displaying 3 results from an estimated 3 matches for "ovirt_develop".

2009 Aug 21
1
[PATCH server] update installer exec items to single_exec where applicable
...single_exec {"create_ovirt_db": command => "/usr/bin/createdb ovirt -U postgres", - require => [Exec[postgres_add_all_trust], Service[postgresql]] + require => [Single_exec[postgres_add_all_trust], Service[postgresql]] } single_exec {"create_ovirt_development_db": command => "/usr/bin/createdb ovirt_development -U postgres", - require => [Exec[postgres_add_all_trust], Service[postgresql]] + require => [Single_exec[postgres_add_all_trust], Service[postgresql]] } postg...
2009 Jun 05
0
[PATCH server] update postgres for ipv6 support, or db:migrate will fail
If the ::1 ipv6 loopback entry is missing in pg_hba.conf rake db:migrate will fail rake aborted! FATAL: no pg_hba.conf entry for host "::1", user "ovirt", database "ovirt_development", SSL off --- installer/modules/ovirt/manifests/postgres.pp | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/installer/modules/ovirt/manifests/postgres.pp b/installer/modules/ovirt/manifests/postgres.pp index 6620a88..1cea6a1 100644 --- a/installer/modules/...
2009 Jun 23
1
[PATCH server] added ovirt-wait4service and invokation in installer to wait for psql/ldap
...single_exec {"create_ovirt_db": command => "/usr/bin/createdb ovirt -U postgres", - require => [Exec[postgres_add_all_trust], Service[postgresql]] + require => [Exec[postgres_add_all_trust], Single_exec[wait_for_postgres]] } single_exec {"create_ovirt_development_db": command => "/usr/bin/createdb ovirt_development -U postgres", - require => [Exec[postgres_add_all_trust], Service[postgresql]] + require => [Exec[postgres_add_all_trust], Single_exec[wait_for_postgres]] } p...