ansible-roles/roles/zabbix_agent/tasks/main.yml

23 lines
501 B
YAML

---
- include_tasks: facts.yml
tags: always
- include_tasks: install.yml
tags: always
- include_tasks: install_{{ ansible_os_family }}.yml
tags: always
- include_tasks: selinux.yml
when: ansible_selinux.status == 'enabled'
tags: always
- include_tasks: conf.yml
tags: always
- include_tasks: psk.yml
tags: always
- include_tasks: sensors.yml
tags: always
- include_tasks: iptables.yml
when: iptables_manage | default(True)
tags: always
- include_tasks: service.yml
tags: always