computer-playbook/playbook.yml

10 lines
336 B
YAML

- name: Execute CyMaIS Play
hosts: all
tasks:
- name: "Load 'constructor' tasks"
include_tasks: "tasks/stages/01_constructor.yml"
- name: "Load '{{host_type}}' tasks"
include_tasks: "tasks/stages/02_{{host_type}}.yml"
- name: "Load 'destructor' tasks"
include_tasks: "tasks/stages/03_destructor.yml"
become: true