homeserver/roles/mgrote_munin_server/handlers/main.yml

19 lines
292 B
YAML
Raw Normal View History

2024-08-12 13:41:18 +02:00
---
2024-08-12 13:56:10 +02:00
- name: "restart apache2"
2024-08-12 13:41:18 +02:00
become: true
ansible.builtin.systemd:
name: apache2
enabled: true
masked: false
state: restarted
2024-08-12 14:24:16 +02:00
- name: "restart munin"
become: true
ansible.builtin.systemd:
name: munin
enabled: true
masked: false
state: restarted
2024-08-12 13:41:18 +02:00
...