ansible/roles/nut/tasks/upsmon.yml

28 lines
667 B
YAML
Raw Normal View History

2023-01-25 10:53:02 +01:00
---
2023-01-25 15:55:20 +01:00
- name: install client for Debian / Ubuntu
apt:
name: nut-client
when: ansible_distribution in ["Debian", "Ubuntu"]
2023-01-25 10:53:02 +01:00
- name: set up /etc/nut/upsmon.conf
blockinfile:
path: /etc/nut/upsmon.conf
block: |
2023-01-25 15:55:20 +01:00
MONITOR {{ nut_device.name }}@{{ nut_host }} 1 upsmon {{ nut_upsmon_password }} {{ nut_types[nut_mode] }}
2023-01-25 10:53:02 +01:00
- name: start and enable nut-upsmon
service:
name: nut-upsmon
runlevel: default
state: started
enabled: true
when: ansible_distribution == "Alpine"
2023-01-25 15:55:20 +01:00
- name: start and enable nut-monitor
systemd:
name: nut-monitor
state: started
enabled: true
when: ansible_distribution in ["Debian", "Ubuntu"]