blob: 169fef2d800c57dad165fdf54ce213bd2f5f5d7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
- name: attackbox setup
hosts: servers
become: true
vars_files:
- vars/packages.yaml
tasks:
- import_tasks: tasks/handlers.yaml
- 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/tor_install.yaml
- import_tasks: tasks/go_tools.yaml
- import_tasks: tasks/github_repos.yaml
#- import_tasks: tasks/generate_readme.yaml
|