Ansible [draft]
First steps I made to start my adventure with Ansible Please go to the official web for instructions on installing Ansible - this is the best way. Installing and upgrading Ansible Ansible’s installation and version ansible --version Create Inventory #inventory file 192.168.1.171 192.168.1.172 192.168.1.173 Create ansible.cfg #ansible.cfg [defaults] inventory = inventory private_key_file = ~/.ssh/ansible/ remote_user = ubuntu Test Ansible is working ansible all --key-file ~/.ssh/ansible -i inventory -m ping After creating config....