mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-07 11:17:34 +01:00
da4cb2f639
While these modules are really nice and helpful, we can't use them for at least 2 reasons: - for us, Postgres runs in a container on a private Docker network (`--network=matrix`) without usually being exposed to the host. These modules execute on the host so they won't be able to reach it. - these modules require `psycopg2`, so we need to install it before using it. This might or might not be its own can of worms.
14 lines
512 B
YAML
14 lines
512 B
YAML
---
|
|
|
|
# TODO - we should ensure matrix-postgres.service is started.
|
|
# .. and that if we had just started it, we've given it ample time to initialize,
|
|
# before we attempt to run queries against it.
|
|
|
|
- name: Create additional Postgers user and database
|
|
include_tasks: "{{ role_path }}/tasks/util/create_additional_database.yml"
|
|
with_items: "{{ matrix_postgres_additional_databases }}"
|
|
loop_control:
|
|
loop_var: additional_db
|
|
# Suppress logging to avoid dumping the credentials to the shell
|
|
no_log: true
|