proxies: switch get_url to just copy from batcave01

get_url has a bug in that batcave01 is using python3.9, but the proxies
are 3.12. See:
https://github.com/ansible/ansible/issues/80490
https://github.com/ansible/ansible/issues/81256

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
Kevin Fenzi
2023-11-16 11:45:35 -08:00
parent 1a6ed735d5
commit 845ba32c3a

View File

@@ -34,13 +34,13 @@
- fedora-web/fedora.im
- name: grab some images from design
get_url: >
url={{item.src_url}} dest=/srv/web/fedora.im/{{item.dest}}
copy: >
src={{item.src_name}} dest=/srv/web/fedora.im/{{item.dest}}
owner=root group=root mode=0644
with_items:
- src_url: "https://pagure.io/design/issue/raw/files/067f51a8a711c49c6f67d635ca6cbdf78b599758d8074b0ac5b2e8b32610a9c1-fedora_logo.png"
- src_name: "/srv/web/infra/bigfiles/design/fedora_logo.png"
dest: fedora_logo.png
- src_url: "https://pagure.io/design/issue/raw/files/2ed898c38cd64db8e9604f17c3f1bc15473f3d6d7f1575c102487d76d6f2777f-fedora-temp.png"
- src_name: "/srv/web/infra/bigfiles/design/fedora_temp.png"
dest: fedora_welcome.png
tags:
- fedora-web