Install pip package on the common role

Several issues on various Puppet modules where it doesn't install
pip dependency, rather install this in the common role upfront.
This commit is contained in:
Ricardo Carrillo Cruz 2015-08-24 09:39:34 +02:00
parent f357563ea2
commit cb1c4ad4ad
2 changed files with 4 additions and 4 deletions

View File

@ -19,8 +19,5 @@
- name: Enable puppet agent, as it is disabled upon installation
command: puppet agent --enable
- name: Install pip from Ubuntu (some classes do not install it properly)
apt: name=python-pip
- name: Run puppet agent to apply configuration
puppet:

View File

@ -3,4 +3,7 @@
apt: update_cache=yes
- name: Install git package
apt: name=git
apt: name={{ item }} state=installed
with_items:
- git
- python-pip