pagure: drop hotfix that has been fixed upstream since

Signed-off-by: Pierre-Yves Chibon <pingou@pingoured.fr>
This commit is contained in:
Pierre-Yves Chibon 2020-08-05 12:20:04 +02:00
parent 3b77653e5c
commit 516e72bbe0

View file

@ -603,32 +603,3 @@
tags:
- pagure
- letsencrypt
- name: Hotfix missing JS lib -- find out where the file should be
shell:
cmd: rpm -ql pagure | grep 'pagure/static/vendor$' | head -n 1
warn: no # package, dnf, yum can't do this
register: pagure_hotfix_vendorlibpath
changed_when: False
failed_when: pagure_hotfix_vendorlibpath.rc != 0
tags:
- pagure
- hotfix
- name: Hotfix missing JS lib -- ensure directory exists
file:
path: "{{ pagure_hotfix_vendorlibpath.stdout }}/d3"
state: directory
mode: u+rwx,g+rx,o+rx-w
tags:
- pagure
- hotfix
- name: Hotfix missing JS lib -- ensure file exists
copy:
force: no # don't overwrite packaged files
src: hotfix/d3/d3.v3.min.js
dest: "{{ pagure_hotfix_vendorlibpath.stdout }}/d3/d3.v3.min.js"
tags:
- pagure
- hotfix