1
0
mirror of https://git.lapiole.org/dani/ansible-roles.git synced 2025-04-24 14:13:19 +02:00
2022-03-07 15:00:06 +01:00

20 lines
394 B
YAML

---
- include_tasks: facts.yml
tags: always
- include_tasks: install.yml
tags: always
- include_tasks: conf.yml
tags: always
- include_tasks: selinux.yml
when: ansible_selinux.status == 'enabled'
tags: always
- include_tasks: iptables.yml
when: iptables_manage | default(True)
tags: always
- include_tasks: service.yml
tags: always
- include_tasks: cleanup.yml
tags: always