we-bridge / vagrant-ansible-symfony

A template Vagrant Symfony2 project setup, supporting mixed Linux/OSX/Windows host environments
7 stars 5 forks source link

added readme with a note for ubuntu users #2

Closed allan-simon closed 9 years ago

cbrunnkvist commented 9 years ago

Meh, when running under Windows and running under Windows so that the box has to self-provision, the same is achieved by adding the "official" PPA:

apt-get install python-software-properties
add-apt-repository ppa:ansible/ansible
apt-get update
apt-get install ansible

I am not a particular fan of installing system-wide stuff via pip, but it is an option, so I think there should be a mention of both methods in there.

allan-simon commented 9 years ago

@cbrunnkvist I've updated the README.md

cbrunnkvist commented 9 years ago

lol I was making almost the exact same change: but you were 5 seconds faster :fast_forward:

Requirements

Note: on ubuntu 14.04 you have to install the latest version of Ansible either directly with pip rather than apt-get:

sudo pip install ansible

or to use the official dpkg packages (making future updates easier), do the following:

sudo apt-get install python-software-properties
sudo add-apt-repository ppa:ansible/ansible
sudo apt-get update
sudo apt-get install ansible