Skip to content

Instantly share code, notes, and snippets.

@sam95
Last active April 28, 2016 07:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sam95/a2acfa06d9e427acdfb2a27ef2d27ff1 to your computer and use it in GitHub Desktop.
Save sam95/a2acfa06d9e427acdfb2a27ef2d27ff1 to your computer and use it in GitHub Desktop.
Installing ansible version 1.7

Ansible is an open source automation tool. Installing ansible is simple for the latest version, to install a specific version follow the below steps

$mkdir ansible-test
$cd ansible-test
$wget https://pypi.python.org/packages/2f/d4/3a76a12463aebc006bce192e5e3de3a48d2a419bccb946849b10b3e27373/ansible-1.7.tar.gz#md5=367d63ff316ee38c7e51b48a8f598327
$tar vxf ansible-1.7.tar.gz
$cd ./ansible-1.7
$make

There you go! You've installed ansible 1.7! To go ahead check ansible docs http://docs.ansible.com/ansible/intro_getting_started.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment