mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 05:36:59 +01:00
14 lines
299 B
YAML
14 lines
299 B
YAML
---
|
|
- name: Install monit
|
|
package: name=monit state=present update_cache=yes
|
|
- name: Enable and start monit service
|
|
systemd:
|
|
name: monit.service
|
|
state: started
|
|
enabled: True
|
|
- name: Copy monit config
|
|
template:
|
|
src: monitrc
|
|
dest: /etc/monitrc
|
|
notify:
|
|
- reload monit
|