1
2
3
4
5
6
7
8
9
10
---
- name: "[systemd] Enable and start service: mbusd"
systemd:
daemon_reload: yes
name: "mbusd"
enabled: yes
state: started
when:
- ansible_service_mgr == "systemd"
My personal ansible roles and playbooks [deprecated in favor of nixos]
1
2
3
4
5
6
7
8
9
10
---
- name: "[systemd] Enable and start service: mbusd"
systemd:
daemon_reload: yes
name: "mbusd"
enabled: yes
state: started
when:
- ansible_service_mgr == "systemd"