Installing Ansible on Ubuntu Server


In this very short video you will see how quick and easy it is to install Ansible on our shiny new Ubuntu Server.

From the server command line, we just need the following three commands:

sudo apt-add-repository -y ppa:ansible/ansible
sudo apt-get update
sudo apt-get install -y ansible

or, if you prefer and have gone all sudo -i on me:

apt-add-repository -y ppa:ansible/ansible
apt-get update
apt-get install -y ansible

Code For This Course

Get the code for this course.

Episodes