33 lines
521 B
YAML
Raw Normal View History

2022-07-21 01:00:17 +02:00
---
- include_tasks: user.yml
when: nomad_user != 'root'
tags: always
- include_tasks: directories.yml
tags: always
- include_tasks: facts.yml
tags: always
- include_tasks: install.yml
tags: always
- include_tasks: conf.yml
tags: always
- include_tasks: iptables.yml
when: iptables_manage | default(True)
tags: always
2024-10-08 16:00:13 +02:00
- include_tasks: selinux.yml
when: ansible_selinux.status == 'enabled'
tags: always
2022-07-21 01:00:17 +02:00
- include_tasks: services.yml
tags: always
- include_tasks: cleanup.yml
tags: always