mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-03-26 03:03:32 +01:00
10 lines
306 B
YAML
10 lines
306 B
YAML
- name: Execute CyMaIS Play
|
|
hosts: all
|
|
tasks:
|
|
- name: "Load 'constructor' tasks"
|
|
include_tasks: "tasks/constructor.yml"
|
|
- name: "Load '{{host_type}}' tasks"
|
|
include_tasks: "tasks/{{host_type}}.yml"
|
|
- name: "Load 'destructor' tasks"
|
|
include_tasks: "tasks/destructor.yml"
|
|
become: true |