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

28 lines
432 B
YAML
Raw Normal View History

2021-12-01 19:13:34 +01:00
---
2022-03-07 14:00:06 +01:00
- include_tasks: install.yml
tags: always
2022-04-06 11:00:07 +02:00
2022-03-07 14:00:06 +01:00
- include_tasks: directories.yml
tags: always
2022-04-06 11:00:07 +02:00
2022-03-07 14:00:06 +01:00
- include_tasks: upgrade.yml
tags: always
2022-04-06 11:00:07 +02:00
2022-03-07 14:00:06 +01:00
- include_tasks: psk.yml
tags: always
2022-04-06 11:00:07 +02:00
2022-03-07 14:00:06 +01:00
- include_tasks: selinux.yml
2021-12-01 19:13:34 +01:00
when: ansible_selinux.status == 'enabled'
2022-03-07 14:00:06 +01:00
tags: always
2022-04-06 11:00:07 +02:00
2022-03-07 14:00:06 +01:00
- include_tasks: conf.yml
tags: always
2022-04-06 11:00:07 +02:00
2022-03-07 14:00:06 +01:00
- include_tasks: iptables.yml
when: iptables_manage | default(True)
2022-04-06 11:00:07 +02:00
2022-03-07 14:00:06 +01:00
- include_tasks: service.yml
tags: always
2021-12-01 19:13:34 +01:00