Ansible Howto
From Cactus Howto
ansible first steps
documentation
installation
On ubuntu / debian:
sudo apt install ansible
initial config
Edit /etc/ansible/hosts
ansible advanced topics
use case change passwords
use case install apt package
tim@spike-vm:~/ansi$ ansible-playbook -l puppet apt-install.yml -K -e "package=apache2" SUDO password: PLAY [all] ********************************************************************* TASK [setup] ******************************************************************* ok: [puppet] TASK [install package "apache2"] *********************************************** ok: [puppet] PLAY RECAP ********************************************************************* puppet : ok=2 changed=0 unreachable=0 failed=0
tim@spike-vm:~/ansi$ cat apt-install.yml
---
- hosts: all
become: yes
tasks:
- name: install package "Template:Package"
apt:
name: apache2
when: >
ansible_distribution == 'Debian'
or
ansible_distribution == 'Ubuntu'