Skip to content

Commit

Permalink
Tag common tasks
Browse files Browse the repository at this point in the history
Conflicts:
	ansible/roles/common/tasks/main.yml
  • Loading branch information
Trevor R.H. Clarke committed Feb 17, 2016
1 parent b13c23e commit 6304b1e
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions ansible/roles/common/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
---
# roles/common/tasks/main.yml
- name: Disable firewall
tags: common
service: name=firewalld state=stopped enabled=false
become: true

- name: Install python-pip
tags: common
yum: name=python-pip
become: true

Expand All @@ -15,12 +17,19 @@
- set permissive mode

- name: Install docker-py
tags: common
pip: name=docker-py version=1.5.0
become: true

- name: Install rsync
tags: common
yum: name=rsync
become: true

# seems to be a conflict with this and device-mapper. Just showed up 12/15 so it might be bug with a recent yum repo update?
- name: Remove lvm2
yum: name=lvm2 state=absent
- name: Update lvm2
tags: common
yum: name=lvm2 state=latest
become: true

- name: Install docker
Expand Down

0 comments on commit 6304b1e

Please sign in to comment.