Difference between revisions of "Ansible"
Jump to navigation
Jump to search
Line 4: | Line 4: | ||
= Install = | = Install = | ||
sudo apt-get install ansible | sudo apt-get install ansible #this also install all dependencies, it can be removed if other version is required | ||
Install dependencies manually | |||
sudo apt-get install python python-setuptools python-crypto python-jinja2 python-paramiko python-pkg-resources python-yaml python python-httplib2 python-netaddr | |||
Download a version from [https://releases.ansible.com/ansible/ Ansible git repository] you need | Download a version from [https://releases.ansible.com/ansible/ Ansible git repository] you need | ||
wget https://releases.ansible.com/ansible/ansible-1.9.4.tar.gz | |||
tar -xzvf ansible-1.9.4.tar.gz | tar -xzvf ansible-1.9.4.tar.gz | ||
cd ansible-1.9.4/ | cd ansible-1.9.4/ |
Revision as of 23:00, 1 March 2016
Ansible - management and configuration system
... watch the space :j
Install
sudo apt-get install ansible #this also install all dependencies, it can be removed if other version is required
Install dependencies manually
sudo apt-get install python python-setuptools python-crypto python-jinja2 python-paramiko python-pkg-resources python-yaml python python-httplib2 python-netaddr
Download a version from Ansible git repository you need
wget https://releases.ansible.com/ansible/ansible-1.9.4.tar.gz tar -xzvf ansible-1.9.4.tar.gz cd ansible-1.9.4/ sudo make sudo python setup.py install