--- # 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