yum accepted pkg=, package calls it name=

Signed-off-by: Patrick Uiterwijk <patrick@puiterwijk.org>
This commit is contained in:
Patrick Uiterwijk 2017-10-09 00:38:19 +02:00
parent 73f695ab72
commit 936e8b261a
126 changed files with 164 additions and 164 deletions

View file

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

View file

@ -2,7 +2,7 @@
# tasklist for setting up git mail hooks
- name: install needed packages
package: pkg={{item}} state=present
package: name={{item}} state=present
with_items:
- git
- moreutils
@ -13,7 +13,7 @@
- packages
- name: install needed packages from epel testing
package: pkg={{item}} state=present enablerepo=epel-testing
package: name={{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
package: pkg=git-daemon state=present
package: name=git-daemon state=present
tags: git/server
# If NOT using xinetd
@ -21,7 +21,7 @@
# If using xinetd
- name: install xinetd
package: pkg=xinetd state=present
package: name=xinetd state=present
when: ansible_distribution_major_version|int == 6
tags: git/server