7ad58f6bc7 | ||
---|---|---|
.gitignore | ||
LICENSE | ||
README.md | ||
play_apt.yml |
README.md
ansible-playbooks
Ansible playbooks to setup initial configurations, install various utilities, and security tools to localhost.
Playbooks
I needed something to install tools quickly after a new fresh OS install.
This branch is tailored for the disco releases of Ubuntu.
Testing
This has been tested on disco 19.04.
Dependencies
Packages to be installed prior to running the playbooks.
$ apt update
$ apt -y install python-apt ansible
Optionally, many of these tools can be installed by the forensics-all
package described in Debian Forensics Environment - essential components.
Examples
Perform a dry run:
$ sudo ansible-playbook play_apt.yml --check
List tasks or tags:
$ sudo ansible-playbook play_apt.yml --list-tasks
Install or skip specific tasks:
$ sudo ansible-playbook play_apt.yml --tags "deb-utils,pip3-sec"
$ sudo ansible-playbook play_apt.yml --skip-tags "deb-sec,pip-sec"
Run playbook and all install tools to localhost:
$ sudo ansible-playbook play_apt.yml