Rename matrix_wechat_* variables to matrix_bridge_wechat_*

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:01:57 +03:00
parent 129f5fda20
commit e3faabf125
11 changed files with 223 additions and 223 deletions
@@ -7,9 +7,9 @@
- name: Check existence of matrix-wechat service
ansible.builtin.stat:
path: "/etc/systemd/system/matrix-wechat.service"
register: matrix_wechat_service_stat
register: matrix_bridge_wechat_service_stat
- when: matrix_wechat_service_stat.stat.exists | bool
- when: matrix_bridge_wechat_service_stat.stat.exists | bool
block:
- name: Ensure matrix-wechat is stopped
ansible.builtin.service:
@@ -26,9 +26,9 @@
- name: Check existence of matrix-wechat-agent service
ansible.builtin.stat:
path: "/etc/systemd/system/matrix-wechat-agent.service"
register: matrix_wechat_agent_service_stat
register: matrix_bridge_wechat_agent_service_stat
- when: matrix_wechat_agent_service_stat.stat.exists | bool
- when: matrix_bridge_wechat_agent_service_stat.stat.exists | bool
block:
- name: Ensure matrix-wechat-agent is stopped
ansible.builtin.service: