Move some things around
This commit is contained in:
parent
2d99ade72f
commit
a3406a182b
@ -33,7 +33,6 @@ matrix_mautrix_facebook_appservice_token: ''
|
|||||||
matrix_mautrix_facebook_homeserver_token: ''
|
matrix_mautrix_facebook_homeserver_token: ''
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Database-related configuration fields.
|
# Database-related configuration fields.
|
||||||
#
|
#
|
||||||
# To use SQLite, stick to these defaults.
|
# To use SQLite, stick to these defaults.
|
||||||
@ -61,6 +60,7 @@ matrix_mautrix_facebook_appservice_database: "{{
|
|||||||
}[matrix_mautrix_facebook_database_engine]
|
}[matrix_mautrix_facebook_database_engine]
|
||||||
}}"
|
}}"
|
||||||
|
|
||||||
|
|
||||||
# Can be set to enable automatic double-puppeting via Shared Secret Auth (https://github.com/devture/matrix-synapse-shared-secret-auth).
|
# Can be set to enable automatic double-puppeting via Shared Secret Auth (https://github.com/devture/matrix-synapse-shared-secret-auth).
|
||||||
matrix_mautrix_facebook_login_shared_secret: ''
|
matrix_mautrix_facebook_login_shared_secret: ''
|
||||||
|
|
||||||
|
@ -1,5 +1,13 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
|
# If the matrix-synapse role is not used, `matrix_synapse_role_executed` won't exist.
|
||||||
|
# We don't want to fail in such cases.
|
||||||
|
- name: Fail if matrix-synapse role already executed
|
||||||
|
fail:
|
||||||
|
msg: >-
|
||||||
|
The matrix-bridge-mautrix-facebook role needs to execute before the matrix-synapse role.
|
||||||
|
when: "matrix_synapse_role_executed|default(False)"
|
||||||
|
|
||||||
- block:
|
- block:
|
||||||
- name: Check if an SQLite database already exists
|
- name: Check if an SQLite database already exists
|
||||||
stat:
|
stat:
|
||||||
@ -20,15 +28,6 @@
|
|||||||
when: "matrix_mautrix_facebook_sqlite_database_path_local_stat_result.stat.exists"
|
when: "matrix_mautrix_facebook_sqlite_database_path_local_stat_result.stat.exists"
|
||||||
when: "matrix_mautrix_facebook_database_engine == 'postgres'"
|
when: "matrix_mautrix_facebook_database_engine == 'postgres'"
|
||||||
|
|
||||||
|
|
||||||
# If the matrix-synapse role is not used, `matrix_synapse_role_executed` won't exist.
|
|
||||||
# We don't want to fail in such cases.
|
|
||||||
- name: Fail if matrix-synapse role already executed
|
|
||||||
fail:
|
|
||||||
msg: >-
|
|
||||||
The matrix-bridge-mautrix-facebook role needs to execute before the matrix-synapse role.
|
|
||||||
when: "matrix_synapse_role_executed|default(False)"
|
|
||||||
|
|
||||||
- name: Ensure Mautrix Facebook image is pulled
|
- name: Ensure Mautrix Facebook image is pulled
|
||||||
docker_image:
|
docker_image:
|
||||||
name: "{{ matrix_mautrix_facebook_docker_image }}"
|
name: "{{ matrix_mautrix_facebook_docker_image }}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user