2023-05-30 23:30:49 +07:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Prepare
|
|
|
|
hosts: all
|
|
|
|
gather_facts: true
|
|
|
|
vars_files:
|
|
|
|
- vars/misc.yml
|
|
|
|
|
|
|
|
tasks:
|
|
|
|
|
|
|
|
- name: INCLUDE_TASKS | Pre tasks related to OS
|
2023-05-31 14:04:30 +07:00
|
|
|
ansible.builtin.include_tasks: "../../tests/includes/pre_{{ ansible_os_family }}.yml"
|
2023-05-30 23:30:49 +07:00
|
|
|
|
|
|
|
- name: INCLUDE_TASKS | Pre_tasks common
|
|
|
|
ansible.builtin.include_tasks: "../../tests/includes/pre_common.yml"
|