Rename playbook variables so they are consistently prefixed

Pretty much all variables live in their own `matrix_<whatever>`
prefix now and are grouped closer together in the default
variables file (`roles/matrix-server/defaults/main.yml`).
This commit is contained in:
Slavi Pantaleev
2018-11-01 08:46:47 +02:00
parent 8343fc39f1
commit fb5115a544
25 changed files with 115 additions and 74 deletions

View File

@@ -15,7 +15,7 @@
- name: Ensure riot-web Docker image is pulled
docker_image:
name: "{{ matrix_docker_image_riot }}"
name: "{{ matrix_riot_web_docker_image }}"
when: matrix_riot_web_enabled
- name: Ensure Matrix riot-web configured
@@ -64,6 +64,6 @@
- name: Ensure riot-web Docker image doesn't exist
docker_image:
name: "{{ matrix_docker_image_riot }}"
name: "{{ matrix_riot_web_docker_image }}"
state: absent
when: "not matrix_riot_web_enabled"