Add monitoring role and playbook for zabbix agent2 (incl. docker config)

This commit is contained in:
DerLinkman
2026-07-18 00:07:59 +02:00
parent 7455a021ea
commit 39511ed69f
11 changed files with 166 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
---
- name: Install Zabbix agent package
ansible.builtin.apt:
name: "{{ monitoring_zabbix_agent_package }}"
state: present
- name: Ensure Zabbix agent service is enabled and started
ansible.builtin.systemd:
name: "{{ monitoring_zabbix_agent_service }}"
state: started
enabled: yes