Created
April 15, 2018 10:04
-
-
Save prashcr/196c0bbd35db69f8215f49c436fc38a8 to your computer and use it in GitHub Desktop.
Script that installs ansible on an Ubuntu instance
This file contains 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 | |
apt-get update | |
apt-get install software-properties-common | |
apt-add-repository ppa:ansible/ansible | |
apt-get update | |
apt-get install ansible |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment