mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-01 14:02:12 +08:00
Replaces many references to package: with ansible.builtin.package Signed-off-by: Ryan Lerch <rlerch@redhat.com>
29 lines
748 B
YAML
29 lines
748 B
YAML
---
|
|
# tasklist for setting up a git check script
|
|
#
|
|
# The script implements various checks (even though it is named check-perms,
|
|
# it checks more than perms), and various other roles can then use it in cron
|
|
# jobs, triggered by fedmsg, etc...
|
|
|
|
- name: Install the needed packages
|
|
ansible.builtin.package: name=git state=present
|
|
tags:
|
|
- git
|
|
- git/checks
|
|
|
|
- name: Install the script
|
|
ansible.builtin.copy: >
|
|
src=check-perms.py dest=/usr/local/bin/git-check-perms
|
|
owner=root group=root mode=0755
|
|
tags:
|
|
- git
|
|
- git/checks
|
|
|
|
- name: Install post-receive check script
|
|
ansible.builtin.copy: >
|
|
src=distgit_check_hook.py dest=/usr/local/bin/distgit_check_hook.py
|
|
owner=root group=root mode=0755
|
|
tags:
|
|
- git
|
|
- git/checks
|