2015-07-15 17:14:39 +07:00
|
|
|
---
|
|
|
|
|
2022-11-25 15:52:40 +07:00
|
|
|
- name: Launch tests
|
|
|
|
hosts: all
|
2015-07-15 21:26:27 +07:00
|
|
|
pre_tasks:
|
2019-02-05 03:25:25 +07:00
|
|
|
- name: INCLUDE_TASKS | Pre_tasks related to OS version
|
2021-09-01 16:58:39 +07:00
|
|
|
ansible.builtin.include_tasks: "includes/pre_{{ ansible_distribution }}.yml"
|
2018-03-17 03:56:15 +07:00
|
|
|
|
2019-02-05 03:25:25 +07:00
|
|
|
- name: IMPORT_TASKS | Pre_tasks common
|
2021-09-01 16:58:39 +07:00
|
|
|
ansible.builtin.import_tasks: "includes/pre_common.yml"
|
2018-03-17 03:56:15 +07:00
|
|
|
|
2015-07-15 17:14:39 +07:00
|
|
|
roles:
|
|
|
|
- ../../
|
2021-09-10 21:25:01 +07:00
|
|
|
|
2015-07-15 22:24:50 +07:00
|
|
|
post_tasks:
|
2019-02-05 03:25:25 +07:00
|
|
|
- name: INCLUDE_TASKS | Post_tasks related to OS version
|
2021-09-01 16:58:39 +07:00
|
|
|
ansible.builtin.include_tasks: "includes/post_{{ ansible_distribution }}.yml"
|
2017-06-14 23:00:30 +07:00
|
|
|
|
2021-09-10 21:25:01 +07:00
|
|
|
- name: IMPORT_TASKS | Post_tasks common
|
|
|
|
ansible.builtin.import_tasks: "includes/post_common.yml"
|