Fix outdated S3 URLs (#81964)

We should always use the CloudFront backed endpoint (ci-files) not the direct S3 bucket reference (ansible-ci-files).
pull/81966/head
Matt Clay 8 months ago committed by GitHub
parent f5c742cdfd
commit 4f04df75cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -3,4 +3,4 @@ dnf_log_files:
- /var/log/dnf.rpm.log
- /var/log/dnf.librepo.log
skip_broken_repo_baseurl: "https://ansible-ci-files.s3.amazonaws.com/test/integration/targets/dnf/skip-broken/RPMS/"
skip_broken_repo_baseurl: "https://ci-files.testing.ansible.com/test/integration/targets/dnf/skip-broken/RPMS/"

@ -8,7 +8,7 @@
block:
- name: unarchive a tar from an URL
unarchive:
src: "https://ansible-ci-files.s3.amazonaws.com/test/integration/targets/apt/echo-hello-source.tar.gz"
src: "https://ci-files.testing.ansible.com/test/integration/targets/apt/echo-hello-source.tar.gz"
dest: "{{ remote_tmp_dir }}/test-unarchive-tar-gz"
mode: "0700"
remote_src: yes

Loading…
Cancel
Save