From 22d5f5d97fe94c70a80a251b44850876b050b1d6 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Mon, 27 Aug 2018 21:12:36 -0700 Subject: [PATCH] Get packages for dnf and yum tests from S3. --- test/integration/targets/dnf/tasks/dnf.yml | 6 +++--- test/integration/targets/yum/tasks/yum.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/test/integration/targets/dnf/tasks/dnf.yml b/test/integration/targets/dnf/tasks/dnf.yml index 064e87779a..850701a852 100644 --- a/test/integration/targets/dnf/tasks/dnf.yml +++ b/test/integration/targets/dnf/tasks/dnf.yml @@ -411,7 +411,7 @@ - name: try to install from non existing url dnf: - name: http://non-existing.com/non-existing-1.0.0.fc26.noarch.rpm + name: https://s3.amazonaws.com/ansible-ci-files/test/integration/targets/dnf/non-existing-1.0.0.fc26.noarch.rpm state: present register: dnf_result ignore_errors: yes @@ -494,7 +494,7 @@ - name: try to install not compatible arch rpm, should fail dnf: - name: http://download.fedoraproject.org/pub/epel/7/ppc64le/Packages/b/banner-1.3.4-3.el7.ppc64le.rpm + name: https://s3.amazonaws.com/ansible-ci-files/test/integration/targets/dnf/banner-1.3.4-3.el7.ppc64le.rpm state: present register: dnf_result ignore_errors: True @@ -516,7 +516,7 @@ state: absent - set_fact: - pkg_url: https://download.fedoraproject.org/pub/fedora/linux/releases/27/Everything/x86_64/os/Packages/f/fpaste-0.3.9.1-1.fc27.noarch.rpm + pkg_url: https://s3.amazonaws.com/ansible-ci-files/test/integration/targets/dnf/fpaste-0.3.9.1-1.fc27.noarch.rpm # setup end - name: download an rpm diff --git a/test/integration/targets/yum/tasks/yum.yml b/test/integration/targets/yum/tasks/yum.yml index 1a5d7333bf..52d58d8f96 100644 --- a/test/integration/targets/yum/tasks/yum.yml +++ b/test/integration/targets/yum/tasks/yum.yml @@ -406,7 +406,7 @@ - name: try to install from non existing url yum: - name: http://non-existing.com/non-existing-1.0.0.fc26.noarch.rpm + name: https://s3.amazonaws.com/ansible-ci-files/test/integration/targets/yum/non-existing-1.0.0.fc26.noarch.rpm state: present register: yum_result ignore_errors: yes @@ -454,7 +454,7 @@ - name: try to install not compatible arch rpm, should fail yum: - name: http://download.fedoraproject.org/pub/epel/7/ppc64le/Packages/b/banner-1.3.4-3.el7.ppc64le.rpm + name: https://s3.amazonaws.com/ansible-ci-files/test/integration/targets/yum/banner-1.3.4-3.el7.ppc64le.rpm state: present register: yum_result ignore_errors: True