diff options
Diffstat (limited to 'attackbox/playbook.yaml')
-rw-r--r-- | attackbox/playbook.yaml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/attackbox/playbook.yaml b/attackbox/playbook.yaml new file mode 100644 index 0000000..333e58e --- /dev/null +++ b/attackbox/playbook.yaml @@ -0,0 +1,16 @@ +- name: attackbox setup + hosts: servers + become: true + vars_files: + - vars/packages.yaml + tasks: + - import_tasks: tasks/apt_packages.yaml + - import_tasks: tasks/harden.yaml + - import_tasks: tasks/golang_install.yaml + - import_tasks: tasks/chrome_install.yaml + - import_tasks: tasks/go_tools.yaml + - import_tasks: tasks/github_repos.yaml + - import_tasks: tasks/generate_readme.yaml + handlers: + - name: update grub + command: update-grub |