search for: postgres_execute_command

Displaying 2 results from an estimated 2 matches for "postgres_execute_command".

2009 Aug 21
1
[PATCH server] update installer exec items to single_exec where applicable
...velopment_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]] } postgres_execute_command {"ovirt_db_create_role": @@ -67,7 +67,7 @@ class postgres::bundled{ require => Postgres_execute_command[ovirt_db_create_role] } - exec {"postgres_add_all_trust": + single_exec {"postgres_add_all_trust": command => &quo...
2009 Jun 23
1
[PATCH server] added ovirt-wait4service and invokation in installer to wait for psql/ldap
...pment_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]] } postgres_execute_command {"ovirt_db_create_role": @@ -70,13 +75,13 @@ class postgres::bundled{ exec {"postgres_add_all_trust": command => "/bin/echo 'local all all trust' > /var/lib/pgsql/data/pg_hba.conf", require => Single_exec[initialize_db], - notify...