matrix-docker-ansible-deploy/roles/matrix-bridge-hookshot/tasks/setup_uninstall.yml

26 lines
774 B
YAML
Raw Normal View History

2022-01-03 20:22:42 +00:00
---
- name: Check existence of matrix-hookshot service
2022-07-18 08:22:05 +00:00
ansible.builtin.stat:
2022-01-03 20:22:42 +00:00
path: "{{ matrix_systemd_path }}/matrix-hookshot.service"
register: matrix_hookshot_service_stat
- name: Ensure matrix-hookshot is stopped
ansible.builtin.service:
2022-01-03 20:22:42 +00:00
name: matrix-hookshot
state: stopped
enabled: false
daemon_reload: true
2022-01-03 20:22:42 +00:00
when: "matrix_hookshot_service_stat.stat.exists"
- name: Ensure matrix-hookshot.service doesn't exist
ansible.builtin.file:
2022-01-03 20:22:42 +00:00
path: "{{ matrix_systemd_path }}/matrix-hookshot.service"
state: absent
when: "matrix_hookshot_service_stat.stat.exists"
- name: Ensure systemd reloaded after matrix-hookshot.service removal
ansible.builtin.service:
daemon_reload: true
2022-01-03 20:22:42 +00:00
when: "matrix_hookshot_service_stat.stat.exists"