20 lines
573 B
YAML
20 lines
573 B
YAML
---
|
|
|
|
- hosts: all
|
|
pre_tasks:
|
|
- name: INCLUDE_TASKS | Pre_tasks related to OS version
|
|
ansible.builtin.include_tasks: "includes/pre_{{ ansible_distribution }}.yml"
|
|
|
|
- name: IMPORT_TASKS | Pre_tasks common
|
|
ansible.builtin.import_tasks: "includes/pre_common.yml"
|
|
|
|
roles:
|
|
- ../../
|
|
|
|
post_tasks:
|
|
- name: INCLUDE_TASKS | Post_tasks related to OS version
|
|
ansible.builtin.include_tasks: "includes/post_{{ ansible_distribution }}.yml"
|
|
|
|
- name: IMPORT_TASKS | Post_tasks common
|
|
ansible.builtin.import_tasks: "includes/post_common.yml"
|