infra/roles/sensors/handlers/main.yml

18 lines
371 B
YAML

---
- name: restart sudoisbot temp_pub
systemd:
state: restarted
daemon_reload: yes
name: "sudoisbot@temp_pub"
when: "'temp' in sensors"
- name: restart sudoisbot rain_pub
systemd:
state: restarted
daemon_reload: yes
name: "sudoisbot@rain_pub"
when: "'rain' in sensors"
- name: systemctl daemon reload
command: systemctl daemon-reload