2019-07-28 16:52:30 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Check existence of matrix-mautrix-hangouts service
|
|
|
|
stat:
|
2020-03-24 18:27:58 +00:00
|
|
|
path: "{{ matrix_systemd_path }}/matrix-mautrix-hangouts.service"
|
2019-07-28 16:52:30 +00:00
|
|
|
register: matrix_mautrix_hangouts_service_stat
|
|
|
|
|
|
|
|
- name: Ensure matrix-mautrix-hangouts is stopped
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.service:
|
2019-07-28 16:52:30 +00:00
|
|
|
name: matrix-mautrix-hangouts
|
|
|
|
state: stopped
|
2022-02-05 20:32:54 +00:00
|
|
|
enabled: false
|
|
|
|
daemon_reload: true
|
2019-07-28 16:52:30 +00:00
|
|
|
when: "matrix_mautrix_hangouts_service_stat.stat.exists"
|
|
|
|
|
|
|
|
- name: Ensure matrix-mautrix-hangouts.service doesn't exist
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.file:
|
2020-03-24 18:27:58 +00:00
|
|
|
path: "{{ matrix_systemd_path }}/matrix-mautrix-hangouts.service"
|
2019-07-28 16:52:30 +00:00
|
|
|
state: absent
|
|
|
|
when: "matrix_mautrix_hangouts_service_stat.stat.exists"
|
|
|
|
|
|
|
|
- name: Ensure systemd reloaded after matrix-mautrix-hangouts.service removal
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.service:
|
2022-02-05 20:32:54 +00:00
|
|
|
daemon_reload: true
|
2019-07-28 16:52:30 +00:00
|
|
|
when: "matrix_mautrix_hangouts_service_stat.stat.exists"
|