Displaying 2 results from an estimated 2 matches for "ovirt_db_create_rol".
Did you mean:
ovirt_db_create_role
2009 Aug 21
1
[PATCH server] update installer exec items to single_exec where applicable
...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 => "/bin/echo 'local all...
2009 Jun 23
1
[PATCH server] added ovirt-wait4service and invokation in installer to wait for psql/ldap
...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 => Service[postgresql]...