Refactored playbooks and optimized main.py

This commit is contained in:
2025-03-19 13:05:03 +01:00
parent bd4241d74e
commit 83de47921d
17 changed files with 513 additions and 444 deletions

10
playbook.yml Normal file
View File

@@ -0,0 +1,10 @@
- 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