2020-01-09 16:00:03 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Check existence of matrix-appservice-webhooks service
|
|
|
|
stat:
|
2020-03-24 18:27:58 +00:00
|
|
|
path: "{{ matrix_systemd_path }}/matrix-appservice-webhooks.service"
|
2020-01-09 16:00:03 +00:00
|
|
|
register: matrix_appservice_webhooks_service_stat
|
|
|
|
|
|
|
|
- name: Ensure matrix-appservice-webhooks is stopped
|
|
|
|
service:
|
|
|
|
name: matrix-appservice-webhooks
|
|
|
|
state: stopped
|
2021-11-10 15:39:21 +00:00
|
|
|
enabled: no
|
2020-01-09 16:00:03 +00:00
|
|
|
daemon_reload: yes
|
|
|
|
when: "matrix_appservice_webhooks_service_stat.stat.exists"
|
|
|
|
|
|
|
|
- name: Ensure matrix-appservice-webhooks.service doesn't exist
|
|
|
|
file:
|
2020-03-24 18:27:58 +00:00
|
|
|
path: "{{ matrix_systemd_path }}/matrix-appservice-webhooks.service"
|
2020-01-09 16:00:03 +00:00
|
|
|
state: absent
|
|
|
|
when: "matrix_appservice_webhooks_service_stat.stat.exists"
|
|
|
|
|
|
|
|
- name: Ensure systemd reloaded after matrix-appservice-webhooks.service removal
|
|
|
|
service:
|
|
|
|
daemon_reload: yes
|
|
|
|
when: "matrix_appservice_webhooks_service_stat.stat.exists"
|