diff options
Diffstat (limited to 'sliver-c2/playbook.yaml')
-rw-r--r-- | sliver-c2/playbook.yaml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sliver-c2/playbook.yaml b/sliver-c2/playbook.yaml new file mode 100644 index 0000000..9c73175 --- /dev/null +++ b/sliver-c2/playbook.yaml @@ -0,0 +1,14 @@ +- name: sliver setup + hosts: servers + become: true + vars_files: + - vars/packages.yaml + - vars/sliver.yaml + tasks: + - import_tasks: tasks/apt_packages.yaml + - import_tasks: tasks/harden.yaml + - import_tasks: tasks/sliver_install.yaml + - import_tasks: tasks/sliver_systemd.yaml + - import_tasks: tasks/sliver_configure.yaml + handlers: + - import_tasks: handlers/main.yaml |