Rename some variables for consistency
This commit is contained in:
parent
8fe97abe7d
commit
2b85fde103
@ -172,7 +172,7 @@ matrix_appservice_irc_homeserver_token: "{{ matrix_synapse_macaroon_secret_key |
|
|||||||
# We don't enable bridges by default.
|
# We don't enable bridges by default.
|
||||||
matrix_mautrix_facebook_enabled: false
|
matrix_mautrix_facebook_enabled: false
|
||||||
|
|
||||||
matrix_mautrix_facebook_self_build: "{{ matrix_container_images_self_build }}"
|
matrix_mautrix_facebook_container_image_self_build: "{{ matrix_container_images_self_build }}"
|
||||||
|
|
||||||
matrix_mautrix_facebook_systemd_required_services_list: |
|
matrix_mautrix_facebook_systemd_required_services_list: |
|
||||||
{{
|
{{
|
||||||
@ -203,7 +203,7 @@ matrix_mautrix_facebook_login_shared_secret: "{{ matrix_synapse_ext_password_pro
|
|||||||
# We don't enable bridges by default.
|
# We don't enable bridges by default.
|
||||||
matrix_mautrix_hangouts_enabled: false
|
matrix_mautrix_hangouts_enabled: false
|
||||||
|
|
||||||
matrix_mautrix_hangouts_self_build: "{{ matrix_container_images_self_build }}"
|
matrix_mautrix_hangouts_container_image_self_build: "{{ matrix_container_images_self_build }}"
|
||||||
|
|
||||||
matrix_mautrix_hangouts_systemd_required_services_list: |
|
matrix_mautrix_hangouts_systemd_required_services_list: |
|
||||||
{{
|
{{
|
||||||
@ -333,7 +333,7 @@ matrix_corporal_matrix_registration_shared_secret: "{{ matrix_synapse_registrati
|
|||||||
|
|
||||||
matrix_coturn_enabled: true
|
matrix_coturn_enabled: true
|
||||||
|
|
||||||
matrix_coturn_self_build: "{{ matrix_container_images_self_build }}"
|
matrix_coturn_container_image_self_build: "{{ matrix_container_images_self_build }}"
|
||||||
|
|
||||||
matrix_coturn_turn_external_ip_address: "{{ ansible_host }}"
|
matrix_coturn_turn_external_ip_address: "{{ ansible_host }}"
|
||||||
|
|
||||||
@ -421,7 +421,7 @@ matrix_mailer_enabled: true
|
|||||||
# If you wish to use the public identity servers (matrix.org, vector.im) instead of your own you may wish to disable this.
|
# If you wish to use the public identity servers (matrix.org, vector.im) instead of your own you may wish to disable this.
|
||||||
matrix_mxisd_enabled: true
|
matrix_mxisd_enabled: true
|
||||||
|
|
||||||
matrix_mxisd_self_build: "{{ matrix_container_images_self_build }}"
|
matrix_mxisd_container_image_self_build: "{{ matrix_container_images_self_build }}"
|
||||||
|
|
||||||
# Normally, matrix-nginx-proxy is enabled and nginx can reach mxisd over the container network.
|
# Normally, matrix-nginx-proxy is enabled and nginx can reach mxisd over the container network.
|
||||||
# If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
|
# If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
|
||||||
@ -567,7 +567,7 @@ matrix_postgres_db_name: "homeserver"
|
|||||||
# If you wish to connect to your Matrix server by other means, you may wish to disable this.
|
# If you wish to connect to your Matrix server by other means, you may wish to disable this.
|
||||||
matrix_riot_web_enabled: true
|
matrix_riot_web_enabled: true
|
||||||
|
|
||||||
matrix_riot_web_self_build: "{{ matrix_container_images_self_build }}"
|
matrix_riot_web_container_image_self_build: "{{ matrix_container_images_self_build }}"
|
||||||
|
|
||||||
# Normally, matrix-nginx-proxy is enabled and nginx can reach riot-web over the container network.
|
# Normally, matrix-nginx-proxy is enabled and nginx can reach riot-web over the container network.
|
||||||
# If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
|
# If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
|
||||||
@ -610,7 +610,7 @@ matrix_riot_web_welcome_user_id: ~
|
|||||||
#
|
#
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
matrix_synapse_self_build: "{{ matrix_container_images_self_build }}"
|
matrix_synapse_container_image_self_build: "{{ matrix_container_images_self_build }}"
|
||||||
|
|
||||||
# When mxisd is enabled, we can use it instead of the default public Identity servers.
|
# When mxisd is enabled, we can use it instead of the default public Identity servers.
|
||||||
matrix_synapse_trusted_third_party_id_servers: "{{ [matrix_server_fqn_matrix] if matrix_mxisd_enabled else matrix_synapse_id_servers_public }}"
|
matrix_synapse_trusted_third_party_id_servers: "{{ [matrix_server_fqn_matrix] if matrix_mxisd_enabled else matrix_synapse_id_servers_public }}"
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
matrix_mautrix_facebook_enabled: true
|
matrix_mautrix_facebook_enabled: true
|
||||||
|
|
||||||
matrix_mautrix_facebook_self_build: false
|
matrix_mautrix_facebook_container_image_self_build: false
|
||||||
|
|
||||||
# See: https://mau.dev/tulir/mautrix-facebook/container_registry
|
# See: https://mau.dev/tulir/mautrix-facebook/container_registry
|
||||||
matrix_mautrix_facebook_docker_image: "dock.mau.dev/tulir/mautrix-facebook:latest"
|
matrix_mautrix_facebook_docker_image: "dock.mau.dev/tulir/mautrix-facebook:latest"
|
||||||
|
@ -20,4 +20,4 @@
|
|||||||
- name: Fail if running on Ansible lower than 2.8 and trying self building
|
- name: Fail if running on Ansible lower than 2.8 and trying self building
|
||||||
fail:
|
fail:
|
||||||
msg: "To self build Mautrix Facebook image, you should usa ansible 2.8 or higher. E.g. pip contains such packages."
|
msg: "To self build Mautrix Facebook image, you should usa ansible 2.8 or higher. E.g. pip contains such packages."
|
||||||
when: "ansible_version.major == 2 and ansible_version.minor < 8 and matrix_mautrix_facebook_self_build"
|
when: "ansible_version.major == 2 and ansible_version.minor < 8 and matrix_mautrix_facebook_container_image_self_build"
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
||||||
force_source: "{{ matrix_mautrix_facebook_docker_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
force_source: "{{ matrix_mautrix_facebook_docker_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
||||||
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_mautrix_facebook_docker_image_force_pull }}"
|
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_mautrix_facebook_docker_image_force_pull }}"
|
||||||
when: matrix_mautrix_facebook_enabled|bool and not matrix_mautrix_facebook_self_build
|
when: matrix_mautrix_facebook_enabled|bool and not matrix_mautrix_facebook_container_image_self_build
|
||||||
|
|
||||||
- name: Ensure Mautrix Facebook paths exist
|
- name: Ensure Mautrix Facebook paths exist
|
||||||
file:
|
file:
|
||||||
@ -27,7 +27,7 @@
|
|||||||
- "{{ matrix_mautrix_facebook_base_path }}"
|
- "{{ matrix_mautrix_facebook_base_path }}"
|
||||||
- "{{ matrix_mautrix_facebook_config_path }}"
|
- "{{ matrix_mautrix_facebook_config_path }}"
|
||||||
- "{{ matrix_mautrix_facebook_data_path }}"
|
- "{{ matrix_mautrix_facebook_data_path }}"
|
||||||
- { src: "{{ matrix_mautrix_facebook_docker_src_files_path }}", when: "{{ matrix_mautrix_facebook_self_build }}" }
|
- { src: "{{ matrix_mautrix_facebook_docker_src_files_path }}", when: "{{ matrix_mautrix_facebook_container_image_self_build }}" }
|
||||||
|
|
||||||
- name: Ensure Mautrix Facebook repository is present on self-build
|
- name: Ensure Mautrix Facebook repository is present on self-build
|
||||||
git:
|
git:
|
||||||
@ -35,7 +35,7 @@
|
|||||||
dest: "{{ matrix_mautrix_facebook_docker_src_files_path }}"
|
dest: "{{ matrix_mautrix_facebook_docker_src_files_path }}"
|
||||||
# version: "{{ matrix_coturn_docker_image.split(':')[1] }}"
|
# version: "{{ matrix_coturn_docker_image.split(':')[1] }}"
|
||||||
force: "yes"
|
force: "yes"
|
||||||
when: "matrix_mautrix_facebook_enabled|bool and matrix_mautrix_facebook_self_build"
|
when: "matrix_mautrix_facebook_enabled|bool and matrix_mautrix_facebook_container_image_self_build"
|
||||||
|
|
||||||
- name: Ensure Mautrix Facebook Docker image is build
|
- name: Ensure Mautrix Facebook Docker image is build
|
||||||
docker_image:
|
docker_image:
|
||||||
@ -45,7 +45,7 @@
|
|||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
path: "{{ matrix_mautrix_facebook_docker_src_files_path }}"
|
path: "{{ matrix_mautrix_facebook_docker_src_files_path }}"
|
||||||
pull: yes
|
pull: yes
|
||||||
when: "matrix_mautrix_facebook_enabled|bool and matrix_mautrix_facebook_self_build"
|
when: "matrix_mautrix_facebook_enabled|bool and matrix_mautrix_facebook_container_image_self_build"
|
||||||
|
|
||||||
- name: Check if an old database file already exists
|
- name: Check if an old database file already exists
|
||||||
stat:
|
stat:
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
matrix_mautrix_hangouts_enabled: true
|
matrix_mautrix_hangouts_enabled: true
|
||||||
|
|
||||||
matrix_mautrix_hangouts_self_build: false
|
matrix_mautrix_hangouts_container_image_self_build: false
|
||||||
|
|
||||||
# See: https://mau.dev/tulir/mautrix-hangouts/container_registry
|
# See: https://mau.dev/tulir/mautrix-hangouts/container_registry
|
||||||
matrix_mautrix_hangouts_docker_image: "dock.mau.dev/tulir/mautrix-hangouts:latest"
|
matrix_mautrix_hangouts_docker_image: "dock.mau.dev/tulir/mautrix-hangouts:latest"
|
||||||
|
@ -66,4 +66,4 @@
|
|||||||
- name: Fail if running on Ansible lower than 2.8 and trying self building
|
- name: Fail if running on Ansible lower than 2.8 and trying self building
|
||||||
fail:
|
fail:
|
||||||
msg: "To self build Mautrix Hangouts image, you should usa ansible 2.8 or higher. E.g. pip contains such packages."
|
msg: "To self build Mautrix Hangouts image, you should usa ansible 2.8 or higher. E.g. pip contains such packages."
|
||||||
when: "ansible_version.major == 2 and ansible_version.minor < 8 and matrix_mautrix_hangouts_self_build"
|
when: "ansible_version.major == 2 and ansible_version.minor < 8 and matrix_mautrix_hangouts_container_image_self_build"
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
||||||
force_source: "{{ matrix_mautrix_hangouts_docker_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
force_source: "{{ matrix_mautrix_hangouts_docker_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
||||||
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_mautrix_hangouts_docker_image_force_pull }}"
|
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_mautrix_hangouts_docker_image_force_pull }}"
|
||||||
when: matrix_mautrix_hangouts_enabled|bool and not matrix_mautrix_hangouts_self_build
|
when: matrix_mautrix_hangouts_enabled|bool and not matrix_mautrix_hangouts_container_image_self_build
|
||||||
|
|
||||||
- name: Ensure Mautrix Hangouts paths exist
|
- name: Ensure Mautrix Hangouts paths exist
|
||||||
file:
|
file:
|
||||||
@ -27,16 +27,16 @@
|
|||||||
- "{{ matrix_mautrix_hangouts_base_path }}"
|
- "{{ matrix_mautrix_hangouts_base_path }}"
|
||||||
- "{{ matrix_mautrix_hangouts_config_path }}"
|
- "{{ matrix_mautrix_hangouts_config_path }}"
|
||||||
- "{{ matrix_mautrix_hangouts_data_path }}"
|
- "{{ matrix_mautrix_hangouts_data_path }}"
|
||||||
- { src: "{{ matrix_mautrix_hangouts_docker_src_files_path }}", when: "{{ matrix_mautrix_hangouts_self_build }}" }
|
- { src: "{{ matrix_mautrix_hangouts_docker_src_files_path }}", when: "{{ matrix_mautrix_hangouts_container_image_self_build }}" }
|
||||||
|
|
||||||
when: matrix_mautrix_hangouts_enabled|bool and not matrix_mautrix_hangouts_self_build
|
when: matrix_mautrix_hangouts_enabled|bool and not matrix_mautrix_hangouts_container_image_self_build
|
||||||
|
|
||||||
- name: Ensure Mautrix Hangots repository is present on self build
|
- name: Ensure Mautrix Hangots repository is present on self build
|
||||||
git:
|
git:
|
||||||
repo: https://github.com/tulir/mautrix-hangouts.git
|
repo: https://github.com/tulir/mautrix-hangouts.git
|
||||||
dest: "{{ matrix_mautrix_hangouts_docker_src_files_path }}"
|
dest: "{{ matrix_mautrix_hangouts_docker_src_files_path }}"
|
||||||
force: "yes"
|
force: "yes"
|
||||||
when: "matrix_mautrix_hangouts_enabled|bool and matrix_mautrix_hangouts_self_build"
|
when: "matrix_mautrix_hangouts_enabled|bool and matrix_mautrix_hangouts_container_image_self_build"
|
||||||
|
|
||||||
- name: Ensure Mautrix Hangouts Docker image is build
|
- name: Ensure Mautrix Hangouts Docker image is build
|
||||||
docker_image:
|
docker_image:
|
||||||
@ -46,7 +46,7 @@
|
|||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
path: "{{ matrix_mautrix_hangouts_docker_src_files_path }}"
|
path: "{{ matrix_mautrix_hangouts_docker_src_files_path }}"
|
||||||
pull: yes
|
pull: yes
|
||||||
when: "matrix_mautrix_hangouts_enabled|bool and matrix_mautrix_hangouts_self_build"
|
when: "matrix_mautrix_hangouts_enabled|bool and matrix_mautrix_hangouts_container_image_self_build"
|
||||||
|
|
||||||
- name: Check if an old database file already exists
|
- name: Check if an old database file already exists
|
||||||
stat:
|
stat:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
matrix_coturn_enabled: true
|
matrix_coturn_enabled: true
|
||||||
|
|
||||||
matrix_coturn_self_build: false
|
matrix_coturn_container_image_self_build: false
|
||||||
|
|
||||||
matrix_coturn_docker_image: "instrumentisto/coturn:4.5.1.1"
|
matrix_coturn_docker_image: "instrumentisto/coturn:4.5.1.1"
|
||||||
matrix_coturn_docker_image_force_pull: "{{ matrix_coturn_docker_image.endswith(':latest') }}"
|
matrix_coturn_docker_image_force_pull: "{{ matrix_coturn_docker_image.endswith(':latest') }}"
|
||||||
|
@ -7,4 +7,4 @@
|
|||||||
- name: Fail if running on Ansible lower than 2.8 and trying self building
|
- name: Fail if running on Ansible lower than 2.8 and trying self building
|
||||||
fail:
|
fail:
|
||||||
msg: "To self build Coturn image, you should usa ansible 2.8 or higher. E.g. pip contains such packages."
|
msg: "To self build Coturn image, you should usa ansible 2.8 or higher. E.g. pip contains such packages."
|
||||||
when: "ansible_version.major == 2 and ansible_version.minor < 8 and matrix_coturn_self_build"
|
when: "ansible_version.major == 2 and ansible_version.minor < 8 and matrix_coturn_container_image_self_build"
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
owner: "{{ matrix_user_username }}"
|
owner: "{{ matrix_user_username }}"
|
||||||
group: "{{ matrix_user_username }}"
|
group: "{{ matrix_user_username }}"
|
||||||
with_items:
|
with_items:
|
||||||
- { src: "{{ matrix_coturn_docker_src_files_path }}", when: "{{ matrix_coturn_self_build }}"}
|
- { src: "{{ matrix_coturn_docker_src_files_path }}", when: "{{ matrix_coturn_container_image_self_build }}"}
|
||||||
when: matrix_riot_web_enabled|bool
|
when: matrix_riot_web_enabled|bool
|
||||||
|
|
||||||
- name: Ensure Coturn image is pulled
|
- name: Ensure Coturn image is pulled
|
||||||
@ -21,7 +21,7 @@
|
|||||||
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
||||||
force_source: "{{ matrix_coturn_docker_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
force_source: "{{ matrix_coturn_docker_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
||||||
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_coturn_docker_image_force_pull }}"
|
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_coturn_docker_image_force_pull }}"
|
||||||
when: matrix_coturn_enabled|bool and not matrix_coturn_self_build
|
when: matrix_coturn_enabled|bool and not matrix_coturn_container_image_self_build
|
||||||
|
|
||||||
- name: Ensure Coturn repository is present on self-build
|
- name: Ensure Coturn repository is present on self-build
|
||||||
git:
|
git:
|
||||||
@ -29,7 +29,7 @@
|
|||||||
dest: "{{ matrix_coturn_docker_src_files_path }}"
|
dest: "{{ matrix_coturn_docker_src_files_path }}"
|
||||||
version: "{{ matrix_coturn_docker_image.split(':')[1] }}"
|
version: "{{ matrix_coturn_docker_image.split(':')[1] }}"
|
||||||
force: "yes"
|
force: "yes"
|
||||||
when: "matrix_coturn_enabled|bool and matrix_coturn_self_build"
|
when: "matrix_coturn_enabled|bool and matrix_coturn_container_image_self_build"
|
||||||
|
|
||||||
- name: Ensure Coturn Docker image is build
|
- name: Ensure Coturn Docker image is build
|
||||||
docker_image:
|
docker_image:
|
||||||
@ -39,7 +39,7 @@
|
|||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
path: "{{ matrix_coturn_docker_src_files_path }}"
|
path: "{{ matrix_coturn_docker_src_files_path }}"
|
||||||
pull: yes
|
pull: yes
|
||||||
when: "matrix_coturn_enabled|bool and matrix_coturn_self_build"
|
when: "matrix_coturn_enabled|bool and matrix_coturn_container_image_self_build"
|
||||||
|
|
||||||
- name: Ensure Coturn configuration path exists
|
- name: Ensure Coturn configuration path exists
|
||||||
file:
|
file:
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
matrix_mxisd_enabled: true
|
matrix_mxisd_enabled: true
|
||||||
|
|
||||||
matrix_mxisd_self_build: false
|
matrix_mxisd_container_image_self_build: false
|
||||||
|
|
||||||
matrix_mxisd_docker_image: "kamax/mxisd:1.4.6"
|
matrix_mxisd_docker_image: "kamax/mxisd:1.4.6"
|
||||||
matrix_mxisd_docker_image_force_pull: "{{ matrix_mxisd_docker_image.endswith(':latest') }}"
|
matrix_mxisd_docker_image_force_pull: "{{ matrix_mxisd_docker_image.endswith(':latest') }}"
|
||||||
|
@ -7,4 +7,4 @@
|
|||||||
- name: Fail if running on Ansible lower than 2.8 and trying self building
|
- name: Fail if running on Ansible lower than 2.8 and trying self building
|
||||||
fail:
|
fail:
|
||||||
msg: "To self build Mxisd image, you should usa ansible 2.8 or higher. E.g. pip contains such packages."
|
msg: "To self build Mxisd image, you should usa ansible 2.8 or higher. E.g. pip contains such packages."
|
||||||
when: "ansible_version.major == 2 and ansible_version.minor < 8 and matrix_mxisd_self_build"
|
when: "ansible_version.major == 2 and ansible_version.minor < 8 and matrix_mxisd_container_image_self_build"
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
with_items:
|
with_items:
|
||||||
- "{{ matrix_mxisd_config_path }}"
|
- "{{ matrix_mxisd_config_path }}"
|
||||||
- "{{ matrix_mxisd_data_path }}"
|
- "{{ matrix_mxisd_data_path }}"
|
||||||
- { src: "{{ matrix_mxisd_docker_src_files_path }}", when: "{{ matrix_mxisd_self_build }}"}
|
- { src: "{{ matrix_mxisd_docker_src_files_path }}", when: "{{ matrix_mxisd_container_image_self_build }}"}
|
||||||
when: matrix_mxisd_enabled|bool
|
when: matrix_mxisd_enabled|bool
|
||||||
|
|
||||||
- name: Ensure mxisd image is pulled
|
- name: Ensure mxisd image is pulled
|
||||||
@ -23,7 +23,7 @@
|
|||||||
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
||||||
force_source: "{{ matrix_mxisd_docker_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
force_source: "{{ matrix_mxisd_docker_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
||||||
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_mxisd_docker_image_force_pull }}"
|
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_mxisd_docker_image_force_pull }}"
|
||||||
when: matrix_mxisd_enabled|bool and not matrix_mxisd_self_build
|
when: matrix_mxisd_enabled|bool and not matrix_mxisd_container_image_self_build
|
||||||
|
|
||||||
- name: Ensure gradel is installed for self-building
|
- name: Ensure gradel is installed for self-building
|
||||||
apt:
|
apt:
|
||||||
@ -31,7 +31,7 @@
|
|||||||
- gradle
|
- gradle
|
||||||
state: present
|
state: present
|
||||||
update_cache: yes
|
update_cache: yes
|
||||||
when: "matrix_mxisd_enabled|bool and matrix_mxisd_self_build"
|
when: "matrix_mxisd_enabled|bool and matrix_mxisd_container_image_self_build"
|
||||||
|
|
||||||
- name: Ensure mxisd repository is present on self-build
|
- name: Ensure mxisd repository is present on self-build
|
||||||
git:
|
git:
|
||||||
@ -39,13 +39,13 @@
|
|||||||
dest: "{{ matrix_mxisd_docker_src_files_path }}"
|
dest: "{{ matrix_mxisd_docker_src_files_path }}"
|
||||||
version: "v{{ matrix_mxisd_docker_image.split(':')[1] }}"
|
version: "v{{ matrix_mxisd_docker_image.split(':')[1] }}"
|
||||||
force: "yes"
|
force: "yes"
|
||||||
when: "matrix_mxisd_enabled|bool and matrix_mxisd_self_build"
|
when: "matrix_mxisd_enabled|bool and matrix_mxisd_container_image_self_build"
|
||||||
|
|
||||||
- name: Ensure mxisd Docker image is build
|
- name: Ensure mxisd Docker image is build
|
||||||
shell: "./gradlew dockerBuild"
|
shell: "./gradlew dockerBuild"
|
||||||
args:
|
args:
|
||||||
chdir: "{{ matrix_mxisd_docker_src_files_path }}"
|
chdir: "{{ matrix_mxisd_docker_src_files_path }}"
|
||||||
when: "matrix_mxisd_enabled|bool and matrix_mxisd_self_build"
|
when: "matrix_mxisd_enabled|bool and matrix_mxisd_container_image_self_build"
|
||||||
|
|
||||||
- name: Ensure mxisd config installed
|
- name: Ensure mxisd config installed
|
||||||
copy:
|
copy:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
matrix_riot_web_enabled: true
|
matrix_riot_web_enabled: true
|
||||||
|
|
||||||
matrix_riot_web_self_build: false
|
matrix_riot_web_container_image_self_build: false
|
||||||
|
|
||||||
matrix_riot_web_docker_image: "vectorim/riot-web:v1.5.12"
|
matrix_riot_web_docker_image: "vectorim/riot-web:v1.5.12"
|
||||||
matrix_riot_web_docker_image_force_pull: "{{ matrix_riot_web_docker_image.endswith(':latest') }}"
|
matrix_riot_web_docker_image_force_pull: "{{ matrix_riot_web_docker_image.endswith(':latest') }}"
|
||||||
|
@ -7,4 +7,4 @@
|
|||||||
- name: Fail if running on Ansible lower than 2.8 and trying self building
|
- name: Fail if running on Ansible lower than 2.8 and trying self building
|
||||||
fail:
|
fail:
|
||||||
msg: "To self build Riot Web image, you should usa ansible 2.8 or higher. E.g. pip contains such packages."
|
msg: "To self build Riot Web image, you should usa ansible 2.8 or higher. E.g. pip contains such packages."
|
||||||
when: "ansible_version.major == 2 and ansible_version.minor < 8 and matrix_riot_web_self_build"
|
when: "ansible_version.major == 2 and ansible_version.minor < 8 and matrix_riot_web_container_image_self_build"
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
group: "{{ matrix_user_username }}"
|
group: "{{ matrix_user_username }}"
|
||||||
with_items:
|
with_items:
|
||||||
- "{{ matrix_riot_web_data_path }}"
|
- "{{ matrix_riot_web_data_path }}"
|
||||||
- { src: "{{ matrix_riot_web_docker_src_files_path }}", when: "{{ matrix_riot_web_self_build }}" }
|
- { src: "{{ matrix_riot_web_docker_src_files_path }}", when: "{{ matrix_riot_web_container_image_self_build }}" }
|
||||||
when: matrix_riot_web_enabled|bool
|
when: matrix_riot_web_enabled|bool
|
||||||
|
|
||||||
- name: Ensure riot-web Docker image is pulled
|
- name: Ensure riot-web Docker image is pulled
|
||||||
@ -22,7 +22,7 @@
|
|||||||
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
||||||
force_source: "{{ matrix_riot_web_docker_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
force_source: "{{ matrix_riot_web_docker_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
||||||
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_riot_web_docker_image_force_pull }}"
|
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_riot_web_docker_image_force_pull }}"
|
||||||
when: matrix_riot_web_enabled|bool and not matrix_riot_web_self_build
|
when: matrix_riot_web_enabled|bool and not matrix_riot_web_container_image_self_build
|
||||||
|
|
||||||
- name: Ensure Riot Web repository is present on self-build
|
- name: Ensure Riot Web repository is present on self-build
|
||||||
git:
|
git:
|
||||||
@ -30,7 +30,7 @@
|
|||||||
dest: "{{ matrix_riot_web_docker_src_files_path }}"
|
dest: "{{ matrix_riot_web_docker_src_files_path }}"
|
||||||
version: "{{ matrix_riot_web_docker_image.split(':')[1] }}"
|
version: "{{ matrix_riot_web_docker_image.split(':')[1] }}"
|
||||||
force: "yes"
|
force: "yes"
|
||||||
when: "matrix_riot_web_enabled|bool and matrix_riot_web_self_build"
|
when: "matrix_riot_web_enabled|bool and matrix_riot_web_container_image_self_build"
|
||||||
|
|
||||||
- name: Ensure Riot Web Docker image is build
|
- name: Ensure Riot Web Docker image is build
|
||||||
docker_image:
|
docker_image:
|
||||||
@ -40,7 +40,7 @@
|
|||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
path: "{{ matrix_riot_web_docker_src_files_path }}"
|
path: "{{ matrix_riot_web_docker_src_files_path }}"
|
||||||
pull: yes
|
pull: yes
|
||||||
when: "matrix_riot_web_enabled|bool and matrix_riot_web_self_build"
|
when: "matrix_riot_web_enabled|bool and matrix_riot_web_container_image_self_build"
|
||||||
|
|
||||||
- name: Ensure Matrix riot-web configuration installed
|
- name: Ensure Matrix riot-web configuration installed
|
||||||
copy:
|
copy:
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
matrix_synapse_enabled: true
|
matrix_synapse_enabled: true
|
||||||
|
|
||||||
matrix_synapse_self_build: false
|
matrix_synapse_container_image_self_build: false
|
||||||
|
|
||||||
matrix_synapse_docker_image: "matrixdotorg/synapse:v1.11.1"
|
matrix_synapse_docker_image: "matrixdotorg/synapse:v1.11.1"
|
||||||
matrix_synapse_docker_image_force_pull: "{{ matrix_synapse_docker_image.endswith(':latest') }}"
|
matrix_synapse_docker_image_force_pull: "{{ matrix_synapse_docker_image.endswith(':latest') }}"
|
||||||
|
@ -11,4 +11,4 @@
|
|||||||
- name: Fail if running on Ansible lower than 2.8 and trying self building
|
- name: Fail if running on Ansible lower than 2.8 and trying self building
|
||||||
fail:
|
fail:
|
||||||
msg: "To self build Synapse image, you should usa ansible 2.8 or higher. E.g. pip contains such packages."
|
msg: "To self build Synapse image, you should usa ansible 2.8 or higher. E.g. pip contains such packages."
|
||||||
when: "ansible_version.major == 2 and ansible_version.minor < 8 and matrix_synapse_self_build"
|
when: "ansible_version.major == 2 and ansible_version.minor < 8 and matrix_synapse_container_image_self_build"
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
- "{{ matrix_synapse_config_dir_path }}"
|
- "{{ matrix_synapse_config_dir_path }}"
|
||||||
- "{{ matrix_synapse_run_path }}"
|
- "{{ matrix_synapse_run_path }}"
|
||||||
- "{{ matrix_synapse_ext_path }}"
|
- "{{ matrix_synapse_ext_path }}"
|
||||||
- { src: "{{ matrix_synapse_docker_src_files_path }}", when: "{{ matrix_synapse_self_build }}" }
|
- { src: "{{ matrix_synapse_docker_src_files_path }}", when: "{{ matrix_synapse_container_image_self_build }}" }
|
||||||
# We handle matrix_synapse_media_store_path elsewhere (in ./synapse/setup_install.yml),
|
# We handle matrix_synapse_media_store_path elsewhere (in ./synapse/setup_install.yml),
|
||||||
# because if it's using Goofys and it's already mounted (from before),
|
# because if it's using Goofys and it's already mounted (from before),
|
||||||
# trying to chown/chmod it here will cause trouble.
|
# trying to chown/chmod it here will cause trouble.
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
dest: "{{ matrix_synapse_docker_src_files_path }}"
|
dest: "{{ matrix_synapse_docker_src_files_path }}"
|
||||||
version: "{{ matrix_synapse_docker_image.split(':')[1] }}"
|
version: "{{ matrix_synapse_docker_image.split(':')[1] }}"
|
||||||
force: "yes"
|
force: "yes"
|
||||||
when: "matrix_synapse_self_build"
|
when: "matrix_synapse_container_image_self_build"
|
||||||
|
|
||||||
- name: Ensure Synapse Docker image is build
|
- name: Ensure Synapse Docker image is build
|
||||||
docker_image:
|
docker_image:
|
||||||
@ -34,7 +34,7 @@
|
|||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
path: "{{ matrix_synapse_docker_src_files_path }}"
|
path: "{{ matrix_synapse_docker_src_files_path }}"
|
||||||
pull: yes
|
pull: yes
|
||||||
when: "matrix_synapse_self_build"
|
when: "matrix_synapse_container_image_self_build"
|
||||||
|
|
||||||
- name: Ensure Synapse Docker image is pulled
|
- name: Ensure Synapse Docker image is pulled
|
||||||
docker_image:
|
docker_image:
|
||||||
@ -42,7 +42,7 @@
|
|||||||
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
||||||
force_source: "{{ matrix_synapse_docker_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
force_source: "{{ matrix_synapse_docker_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
||||||
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_synapse_docker_image_force_pull }}"
|
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_synapse_docker_image_force_pull }}"
|
||||||
when: "not matrix_synapse_self_build"
|
when: "not matrix_synapse_container_image_self_build"
|
||||||
|
|
||||||
- name: Check if a Synapse signing key exists
|
- name: Check if a Synapse signing key exists
|
||||||
stat:
|
stat:
|
||||||
|
Loading…
Reference in New Issue
Block a user