blob: c97b9c5d7e71827f793302a92c4faa803d71f80a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
---
# file: tasks/main.yaml
- name: tg specific
include_tasks: tg.yaml
when: "'tg' in group_names"
tags:
- cleanup
- name: sut specific
include_tasks: sut.yaml
when: "'sut' in group_names"
tags:
- cleanup
- name: vpp_device specific
include_tasks: vpp_device.yaml
when: "'vpp_device' in group_names"
tags:
- cleanup
- name: nomad specific
include_tasks: nomad.yaml
when: "'nomad' in group_names"
tags:
- cleanup
|