2018-12-23 17:14:01 +00:00
---
2021-01-03 06:53:54 +00:00
# We generally support Ansible 2.7.1 and above.
- name : Fail if running on Ansible < 2.7.1
2019-01-03 14:15:47 +00:00
fail :
2020-09-29 09:23:39 +00:00
msg : "You are running on Ansible {{ ansible_version.string }}, which is not supported. See our guide about Ansible: https://github.com/spantaleev/matrix-docker-ansible-deploy/blob/master/docs/ansible.md"
2021-01-03 06:53:54 +00:00
when :
- "(ansible_version.major < 2) or (ansible_version.major == 2 and ansible_version.minor < 7) or (ansible_version.major == 2 and ansible_version.minor == 7 and ansible_version.revision < 1)"
2019-01-03 14:15:47 +00:00
2020-12-27 02:13:49 +00:00
# Though we do not support Ansible 2.9.6 which is buggy
- name : Fail if running on Ansible 2.9.6 on Ubuntu
fail :
msg : "You are running on Ansible {{ ansible_version.string }}, which is not supported. See our guide about Ansible: https://github.com/spantaleev/matrix-docker-ansible-deploy/blob/master/docs/ansible.md"
when :
- ansible_distribution == 'Ubuntu'
2021-01-03 06:55:30 +00:00
- "ansible_version.major == 2 and ansible_version.minor == 9 and ansible_version.revision == 6"
2020-12-27 02:13:49 +00:00
2019-02-28 09:51:09 +00:00
- name : (Deprecation) Catch and report renamed settings
fail :
msg : >-
Your configuration contains a variable, which now has a different name.
Please change your configuration to rename the variable (`{{ item.old }}` -> `{{ item.new }}`).
when : "item.old in vars"
with_items :
- {'old': 'host_specific_hostname_identity', 'new' : 'matrix_domain' }
- {'old': 'hostname_identity', 'new' : 'matrix_domain' }
- {'old': 'hostname_matrix', 'new' : 'matrix_server_fqn_matrix' }
2020-07-17 08:31:20 +00:00
- {'old': 'hostname_riot', 'new' : 'matrix_server_fqn_element' }
- {'old': 'matrix_server_fqn_riot', 'new' : 'matrix_server_fqn_element' }
2019-02-28 09:51:09 +00:00
- name : Fail if required variables are undefined
fail :
msg : "The `{{ item }}` variable must be defined and have a non-null value"
with_items :
- matrix_domain
- matrix_server_fqn_matrix
2020-07-17 08:31:20 +00:00
- matrix_server_fqn_element
2019-02-28 09:51:09 +00:00
when : "item not in vars or vars[item] is none"
2018-12-23 17:20:53 +00:00
- name : Fail if uppercase domain used
fail :
msg : "Detected that you're using an uppercase domain name - `{{ item }}`. This will cause trouble. Please use all-lowercase!"
with_items :
2019-02-28 09:51:09 +00:00
- "{{ matrix_domain }}"
- "{{ matrix_server_fqn_matrix }}"
2020-07-17 08:31:20 +00:00
- "{{ matrix_server_fqn_element }}"
2019-02-28 09:51:09 +00:00
when : "item != item|lower"
2020-03-28 10:39:15 +00:00
- name : Fail if using python2 on Archlinux
fail :
msg : "Detected that you're using python2 when installing onto Archlinux. Archlinux by default only supports python3."
when :
- ansible_distribution == 'Archlinux'
- ansible_python.version.major != 3