ansible-nginx/tests/test.yml

21 lines
613 B
YAML
Raw Normal View History

2015-07-15 17:14:39 +07:00
---
2023-05-30 20:28:55 +07:00
- name: Launch tests # noqa: role-name[path]
2022-11-25 15:52:40 +07:00
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
2023-05-31 14:04:30 +07:00
ansible.builtin.include_tasks: "includes/pre_{{ ansible_os_family }}.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
2023-05-31 14:04:30 +07:00
ansible.builtin.include_tasks: "includes/post_{{ ansible_os_family }}.yml"
2021-09-10 21:25:01 +07:00
- name: IMPORT_TASKS | Post_tasks common
ansible.builtin.import_tasks: "includes/post_common.yml"