2019-01-01 13:40:48 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
# Pre-checks
|
|
|
|
|
|
|
|
- name: Fail if playbook called incorrectly
|
2019-01-07 23:35:35 +01:00
|
|
|
fail:
|
|
|
|
msg: "The `server_path_postgres_dump` variable needs to be provided to this playbook, via --extra-vars"
|
2019-01-01 13:40:48 +01:00
|
|
|
when: "server_path_postgres_dump is not defined or server_path_postgres_dump.startswith('<')"
|
|
|
|
|
|
|
|
- name: Check if the provided Postgres dump file exists
|
2019-01-07 23:35:35 +01:00
|
|
|
stat:
|
|
|
|
path: "{{ server_path_postgres_dump }}"
|
2019-01-01 13:40:48 +01:00
|
|
|
register: result_server_path_postgres_dump_stat
|
|
|
|
|
|
|
|
- name: Fail if provided Postgres dump file doesn't exists
|
2019-01-07 23:35:35 +01:00
|
|
|
fail:
|
|
|
|
msg: "File cannot be found on the server at {{ server_path_postgres_dump }}"
|
2019-01-01 13:40:48 +01:00
|
|
|
when: not result_server_path_postgres_dump_stat.stat.exists
|
|
|
|
|
2019-01-03 14:24:08 +01:00
|
|
|
- import_tasks: tasks/util/detect_existing_postgres_version.yml
|
2019-01-01 13:40:48 +01:00
|
|
|
|
|
|
|
- name: Abort, if no existing Postgres version detected
|
2019-01-07 23:35:35 +01:00
|
|
|
fail:
|
|
|
|
msg: "Could not find existing Postgres installation"
|
2019-01-01 13:40:48 +01:00
|
|
|
when: "not matrix_postgres_detected_existing"
|
|
|
|
|
|
|
|
|
|
|
|
# Defaults
|
|
|
|
|
|
|
|
- name: Set postgres_start_wait_time, if not provided
|
|
|
|
set_fact:
|
|
|
|
postgres_start_wait_time: 15
|
|
|
|
when: "postgres_start_wait_time|default('') == ''"
|
|
|
|
|
|
|
|
|
|
|
|
# Actual import work
|
|
|
|
|
|
|
|
- name: Ensure matrix-postgres is started
|
2019-01-07 23:35:35 +01:00
|
|
|
service:
|
|
|
|
name: matrix-postgres
|
|
|
|
state: started
|
|
|
|
daemon_reload: yes
|
2019-01-01 13:40:48 +01:00
|
|
|
|
|
|
|
- name: Wait a bit, so that Postgres can start
|
|
|
|
wait_for:
|
|
|
|
timeout: "{{ postgres_start_wait_time }}"
|
|
|
|
delegate_to: 127.0.0.1
|
|
|
|
become: false
|
|
|
|
|
|
|
|
- name: Perform Postgres database import
|
|
|
|
command: |
|
|
|
|
/usr/bin/docker run --rm --name matrix-postgres-import \
|
|
|
|
--network={{ matrix_docker_network }} \
|
2019-01-12 16:53:00 +01:00
|
|
|
--env-file={{ matrix_postgres_base_path }}/env-postgres-psql \
|
2019-01-01 13:40:48 +01:00
|
|
|
-v {{ server_path_postgres_dump }}:{{ server_path_postgres_dump }}:ro \
|
|
|
|
--entrypoint=/bin/sh
|
|
|
|
{{ matrix_postgres_docker_image_latest }}
|
|
|
|
-c 'cat {{ server_path_postgres_dump }} | \
|
|
|
|
{{ 'gunzip |' if server_path_postgres_dump.endswith('.gz') else '' }}
|
|
|
|
psql -v ON_ERROR_STOP=1 -h matrix-postgres'
|