Ansible playbooks to install various utility and security tools to localhost
Go to file
John Hammond 7ad58f6bc7 Added cyberpunk words per Trevor's request 2019-08-05 12:02:02 -04:00
.gitignore update apt 2019-03-24 23:01:10 -04:00
LICENSE Initial commit 2019-03-05 17:17:46 -05:00
README.md asdf 2019-06-09 21:11:59 -04:00
play_apt.yml Added cyberpunk words per Trevor's request 2019-08-05 12:02:02 -04:00

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