mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-06-25 03:38:59 +02:00
10 lines
333 B
YAML
10 lines
333 B
YAML
- name: Execute CyMaIS Play
|
|
hosts: all
|
|
tasks:
|
|
- name: "Load 'constructor' tasks"
|
|
include_tasks: "tasks/plays/01_constructor.yml"
|
|
- name: "Load '{{host_type}}' tasks"
|
|
include_tasks: "tasks/plays/02_{{host_type}}.yml"
|
|
- name: "Load 'destructor' tasks"
|
|
include_tasks: "tasks/plays/03_destructor.yml"
|
|
become: true |