1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
- name: "[systemd] Disable and stop service: mbusd"
systemd:
name: "mbusd"
enabled: no
state: stopped
when:
- ansible_service_mgr == "systemd"
- name: "[Archlinux] Remove package: mbusd"
pacman:
name: mbusd
state: absent
when:
- ansible_distribution == "Archlinux"
- name: "Delete leftovers"
file:
path: "{{item}}"
state: absent
with_items:
- /etc/mbusd
- /etc/mbusd.conf
- /etc/systemd/system/mbusd.service