An Ansbile playbook that installs a variety of tools for cybersecurity exercises
sudo add-apt-repository --yes --update ppa:ansible/ansible
sudo apt install ansible -yClone the repository
Use the latest stable version on the releases page
-v, -vv, -vvv - Increasing levels of verbosity in the terminal
Navigate to the linux-playbook folder and run the following command:
ansible-playbook playbooks/install-packages.yaml -K -l "[host]"Navigate to the linux-playbook folder and run the following command:
ansible-playbook playbooks/install-packages.yaml -K -e "app_state=latest" -l "[host]"By default this playbook almost exclusively installs command line applications. To override this add the install_gui=true variable to hosts in the inventory.ini file, or use the command line flag below.
ansible-playbook playbooks/install-packages.yaml -K -e "app_state=latest" -e "install_gui=true" -l "[host]"