Packageize this, packageize that, packageize the world

Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
This commit is contained in:
Patrick Uiterwijk 2017-10-08 22:25:52 +00:00
parent e680b96895
commit adcbf72f03
163 changed files with 220 additions and 220 deletions

View file

@ -6,7 +6,7 @@
# jobs, triggered by fedmsg, etc...
- name: install the needed packages
yum: pkg=git state=present
package: pkg=git state=present
tags:
- git
- git/checks

View file

@ -2,7 +2,7 @@
# tasklist for setting up git mail hooks
- name: install needed packages
yum: pkg={{item}} state=present
package: pkg={{item}} state=present
with_items:
- git
- moreutils
@ -13,7 +13,7 @@
- packages
- name: install needed packages from epel testing
yum: pkg={{item}} state=present enablerepo=epel-testing
package: pkg={{item}} state=present enablerepo=epel-testing
with_items:
- python-pygit2
tags:

View file

@ -2,7 +2,7 @@
# tasklist for setting up a git server (git:// access)
- name: install the git-daemon package
yum: pkg=git-daemon state=present
package: pkg=git-daemon state=present
tags: git/server
# If NOT using xinetd
@ -21,7 +21,7 @@
# If using xinetd
- name: install xinetd
yum: pkg=xinetd state=present
package: pkg=xinetd state=present
when: ansible_distribution_major_version|int == 6
tags: git/server