Make bridge uninstallation stop services

Fixes #155 (Github Issue)
This commit is contained in:
Slavi Pantaleev
2019-05-21 11:27:05 +09:00
parent a1e9818356
commit 3250df6765
5 changed files with 90 additions and 0 deletions

View File

@ -1,6 +1,24 @@
---
- name: Check existence of matrix-mautrix-telegram service
stat:
path: "/etc/systemd/system/matrix-mautrix-telegram.service"
register: matrix_mautrix_telegram_service_stat
- name: Ensure matrix-mautrix-telegram is stopped
service:
name: matrix-mautrix-telegram
state: stopped
daemon_reload: yes
when: "matrix_mautrix_telegram_service_stat.stat.exists"
- name: Ensure matrix-mautrix-telegram.service doesn't exist
file:
path: "/etc/systemd/system/matrix-mautrix-telegram.service"
state: absent
when: "matrix_mautrix_telegram_service_stat.stat.exists"
- name: Ensure systemd reloaded after matrix-mautrix-telegram.service removal
service:
daemon_reload: yes
when: "matrix_mautrix_telegram_service_stat.stat.exists"