Last active
August 29, 2015 14:21
-
-
Save jrumbut/275ddab930af7fddc065 to your computer and use it in GitHub Desktop.
Install Ansible on Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Installs latest version of Ansible through apt | |
sudo apt-get install software-properties-common && sudo apt-add-repository ppa:ansible/ansible && sudo apt-get update && sudo apt-get install ansible |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment