2021-04-11 06:11:45 +00:00
|
|
|
---
|
|
|
|
|
2021-04-11 06:18:31 +00:00
|
|
|
- name: Check existence of matrix-mautrix-twitter service
|
2021-04-11 06:11:45 +00:00
|
|
|
stat:
|
2021-04-11 06:18:31 +00:00
|
|
|
path: "{{ matrix_systemd_path }}/matrix-mautrix-twitter.service"
|
|
|
|
register: matrix_mautrix_twitter_service_stat
|
2021-04-11 06:11:45 +00:00
|
|
|
|
2021-04-11 06:18:31 +00:00
|
|
|
- name: Ensure matrix-mautrix-twitter is stopped
|
2021-04-11 06:11:45 +00:00
|
|
|
service:
|
2021-04-11 06:18:31 +00:00
|
|
|
name: matrix-mautrix-twitter
|
2021-04-11 06:11:45 +00:00
|
|
|
state: stopped
|
2022-02-05 20:32:54 +00:00
|
|
|
daemon_reload: true
|
2021-04-11 06:18:31 +00:00
|
|
|
when: "matrix_mautrix_twitter_service_stat.stat.exists"
|
2021-04-11 06:11:45 +00:00
|
|
|
|
2021-04-11 06:18:31 +00:00
|
|
|
- name: Ensure matrix-mautrix-twitter.service doesn't exist
|
2021-04-11 06:11:45 +00:00
|
|
|
file:
|
2021-04-11 06:18:31 +00:00
|
|
|
path: "{{ matrix_systemd_path }}/matrix-mautrix-twitter.service"
|
2021-04-11 06:11:45 +00:00
|
|
|
state: absent
|
2021-04-11 06:18:31 +00:00
|
|
|
when: "matrix_mautrix_twitter_service_stat.stat.exists"
|
2021-04-11 06:11:45 +00:00
|
|
|
|
2021-04-11 06:18:31 +00:00
|
|
|
- name: Ensure systemd reloaded after matrix-mautrix-twitter.service removal
|
2021-04-11 06:11:45 +00:00
|
|
|
service:
|
2022-02-05 20:32:54 +00:00
|
|
|
daemon_reload: true
|
2021-04-11 06:18:31 +00:00
|
|
|
when: "matrix_mautrix_twitter_service_stat.stat.exists"
|