2022-07-04 13:51:55 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Check existence of matrix-ntfy service
|
2022-07-18 08:22:05 +00:00
|
|
|
ansible.builtin.stat:
|
2022-11-04 14:38:38 +00:00
|
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-ntfy.service"
|
2022-07-04 13:51:55 +00:00
|
|
|
register: matrix_ntfy_service_stat
|
|
|
|
|
|
|
|
- name: Ensure matrix-ntfy is stopped
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.service:
|
2022-07-04 13:51:55 +00:00
|
|
|
name: matrix-ntfy
|
|
|
|
state: stopped
|
|
|
|
enabled: false
|
|
|
|
daemon_reload: true
|
|
|
|
register: stopping_result
|
|
|
|
when: "matrix_ntfy_service_stat.stat.exists"
|
|
|
|
|
|
|
|
- name: Ensure matrix-ntfy.service doesn't exist
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.file:
|
2022-11-04 14:38:38 +00:00
|
|
|
path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-ntfy.service"
|
2022-07-04 13:51:55 +00:00
|
|
|
state: absent
|
|
|
|
when: "matrix_ntfy_service_stat.stat.exists"
|
|
|
|
|
|
|
|
- name: Ensure systemd reloaded after matrix-ntfy.service removal
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.service:
|
2022-07-04 13:51:55 +00:00
|
|
|
daemon_reload: true
|
|
|
|
when: "matrix_ntfy_service_stat.stat.exists"
|
|
|
|
|
|
|
|
- name: Ensure matrix-ntfy path doesn't exist
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.file:
|
2022-07-04 13:51:55 +00:00
|
|
|
path: "{{ matrix_ntfy_base_path }}"
|
|
|
|
state: absent
|
|
|
|
|
|
|
|
- name: Ensure ntfy Docker image doesn't exist
|
2022-10-28 11:20:17 +00:00
|
|
|
community.docker.docker_image:
|
2022-07-04 13:51:55 +00:00
|
|
|
name: "{{ matrix_ntfy_docker_image }}"
|
|
|
|
state: absent
|