Difference between revisions of "Ansible"
Jump to navigation
Jump to search
(Created page with "Ansible - management and configuration system ... watch the space :j = Reference = *[http://docs.ansible.com/ansible/intro_installation.html#getting-ansible Ansible installa...") |
|||
Line 2: | Line 2: | ||
... watch the space :j | ... watch the space :j | ||
= Install = | |||
sudo apt-get install ansible | |||
Download a version from [https://releases.ansible.com/ansible/ Ansible git repository] you need | |||
tar -xzvf ansible-1.9.4.tar.gz | |||
cd ansible-1.9.4/ | |||
sudo make | |||
sudo python setup.py install | |||
= Reference = | = Reference = | ||
*[http://docs.ansible.com/ansible/intro_installation.html#getting-ansible Ansible installation] | *[http://docs.ansible.com/ansible/intro_installation.html#getting-ansible Ansible installation] |
Revision as of 14:59, 28 February 2016
Ansible - management and configuration system
... watch the space :j
Install
sudo apt-get install ansible
Download a version from Ansible git repository you need
tar -xzvf ansible-1.9.4.tar.gz cd ansible-1.9.4/ sudo make sudo python setup.py install