1
0
Fork 0

Initial commit

This commit is contained in:
Vojtěch Mareš 2023-09-26 21:45:06 +00:00
parent 50a0859318
commit 1768a06a17
4 changed files with 66 additions and 0 deletions

View file

@ -0,0 +1,16 @@
---
- name: disable and stop uptime-kuma service
systemd:
name: "uptime-kuma.service"
enabled: false
state: stopped
- name: remove unit uptime-kuma.service
file:
path: /etc/systemd/system/uptime-kuma.service
state: absent
- name: reload systemd daemon
systemd:
daemon_reload: true
changed_when: false