Ansible playbooks to setup initial configurations, install various utilities, and security tools to localhost.
I needed something to install tools quickly after a new fresh OS install.
This branch is tailored for the disco releases of Ubuntu.
This has been tested on disco 19.04.
Packages to be installed prior to running the playbooks.
$ apt update
$ apt -y install python-apt ansibleOptionally, many of these tools can be installed by the forensics-all package described in Debian Forensics Environment - essential components.
Perform a dry run:
$ sudo ansible-playbook play_apt.yml --checkList tasks or tags:
$ sudo ansible-playbook play_apt.yml --list-tasksInstall 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