mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-20 03:57:02 +08:00
git/hooks: update package command to not use items
Signed-off-by: Aurélien Bompard <aurelien@bompard.org>
This commit is contained in:
committed by
Pierre-Yves Chibon
parent
eb8f7f5651
commit
d98a7392a5
@@ -2,20 +2,23 @@
|
||||
# tasklist for setting up git mail hooks
|
||||
|
||||
- name: install needed packages
|
||||
package: name={{item}} state=present
|
||||
with_items:
|
||||
- git
|
||||
- moreutils
|
||||
- python-kitchen
|
||||
package:
|
||||
state: present
|
||||
name:
|
||||
- git
|
||||
- moreutils
|
||||
- python-kitchen
|
||||
tags:
|
||||
- git
|
||||
- git/hooks
|
||||
- packages
|
||||
|
||||
- name: install needed packages from epel testing
|
||||
package: name={{item}} state=present enablerepo=epel-testing
|
||||
with_items:
|
||||
- python-pygit2
|
||||
yum:
|
||||
state: present
|
||||
enablerepo: epel-testing
|
||||
name:
|
||||
- python-pygit2
|
||||
tags:
|
||||
- git
|
||||
- git/hooks
|
||||
|
||||
Reference in New Issue
Block a user