Ansible – Basic installation
Here are the very basic steps of getting running copy of Ansible. Clone ansible from Git: mkdir ansible_install && cd ansible_install # Clone the source tree git clone git://github.com/ansible/ansible.git # Now make sure to download/update the core modules: cd ansible git submodule update –init –recursive # Install some necessary modules pip install paramiko PyYAML… Continue reading Ansible – Basic installation