5
0
mirror of https://github.com/spantaleev/matrix-docker-ansible-deploy.git synced 2026-07-18 23:59:34 +00:00

Rename matrix_sms_bridge_* variables to matrix_bridge_sms_*

Part of adopting a uniform naming policy for bridge variables,
where the variable prefix matches the role directory name.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Slavi Pantaleev
2026-07-16 15:00:45 +03:00
parent 267d578393
commit a77b8f6eab
8 changed files with 147 additions and 147 deletions
@@ -9,7 +9,7 @@
- name: Check existence of matrix-sms-bridge service
ansible.builtin.stat:
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-sms-bridge.service"
register: matrix_sms_bridge_service_stat
register: matrix_bridge_sms_service_stat
- name: Ensure matrix-sms-bridge is stopped
ansible.builtin.service:
@@ -17,10 +17,10 @@
state: stopped
enabled: false
daemon_reload: true
when: "matrix_sms_bridge_service_stat.stat.exists"
when: "matrix_bridge_sms_service_stat.stat.exists"
- name: Ensure matrix-sms-bridge.service doesn't exist
ansible.builtin.file:
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-sms-bridge.service"
state: absent
when: "matrix_sms_bridge_service_stat.stat.exists"
when: "matrix_bridge_sms_service_stat.stat.exists"