diff options
author | Matt Clay <matt@mystile.com> | 2021-03-12 11:03:42 -0800 |
---|---|---|
committer | Matt Clay <matt@mystile.com> | 2021-03-12 11:34:25 -0800 |
commit | 3a8c9242e1a9175101fb813d785f7329b6882eea (patch) | |
tree | 7e894583bd230041dcfd11b540aee0ca451817d6 /test/integration/targets/setup_epel | |
parent | 197e8f5640bbbb4ce12983f0afcf5fa7a06d67aa (diff) | |
download | ansible-3a8c9242e1a9175101fb813d785f7329b6882eea.tar.gz |
Use virtual host style S3 bucket names in tests.
Diffstat (limited to 'test/integration/targets/setup_epel')
-rw-r--r-- | test/integration/targets/setup_epel/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/targets/setup_epel/tasks/main.yml b/test/integration/targets/setup_epel/tasks/main.yml index c279810e6c..1c41e13e02 100644 --- a/test/integration/targets/setup_epel/tasks/main.yml +++ b/test/integration/targets/setup_epel/tasks/main.yml @@ -1,5 +1,5 @@ - name: Install EPEL yum: - name: https://s3.amazonaws.com/ansible-ci-files/test/integration/targets/setup_epel/epel-release-latest-{{ ansible_distribution_major_version }}.noarch.rpm + name: https://ansible-ci-files.s3.amazonaws.com/test/integration/targets/setup_epel/epel-release-latest-{{ ansible_distribution_major_version }}.noarch.rpm disable_gpg_check: true when: ansible_facts.distribution in ['RedHat', 'CentOS'] |