mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-02-02 20:59:02 +08:00
pagure / dist-git: drop hotfix that was pulled into rpm
We pulled this fix into the epel8 rpm we are using, so we shouldn't try and apply it here also. Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
@@ -1,5 +0,0 @@
|
||||
1455,1456c1455
|
||||
<
|
||||
< if pagure_config["PAGURE_AUTH"] == 'oidc' and flask.g.fas_user.can_create is False:
|
||||
---
|
||||
> if pagure_config["PAGURE_AUTH"] == 'oidc' and hasattr(flask.g.fas_user, "can_create") and flask.g.fas_user.can_create is False:
|
||||
@@ -55,15 +55,6 @@
|
||||
tags:
|
||||
- pagure
|
||||
|
||||
# https://pagure.io/pagure/pull-request/5525
|
||||
- name: Fix the API call with token
|
||||
ansible.posix.patch:
|
||||
src: files/api_project.patch
|
||||
dest: /usr/lib/python3.6/site-packages/pagure/api/project.py
|
||||
tags:
|
||||
- pagure
|
||||
- hotfix
|
||||
|
||||
- name: Create the "git" user
|
||||
ansible.builtin.command:
|
||||
cmd: useradd --create-home --home-dir=/srv/git/ git
|
||||
|
||||
Reference in New Issue
Block a user