infra-ansible/roles/common/tasks/main.yml
Timothy Chavez 9e4ea666b5 Remove trailing whitespace
There were a few instances of trailing whitespace.  This patch
removes them.

Change-Id: Ia2f978a23336e9e7b43049812152cd9538a702e9
2015-09-08 21:29:10 -05:00

19 lines
545 B
YAML

---
- name: Get deb package for Puppetlabs repository
get_url: >
url=https://apt.puppetlabs.com/puppetlabs-release-{{ansible_distribution_release}}.deb
dest=/tmp/puppetlabs-release-{{ansible_distribution_release}}.deb
- name: Install Puppetlabs repository deb package
apt: deb=/tmp/puppetlabs-release-{{ansible_distribution_release}}.deb
- name: Update packages
apt: update_cache=yes
- name: Install Puppet and other required packages
apt: name={{ item }} state=installed
with_items:
- git
- python-pip
- puppet