summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2018-08-27 21:12:36 -0700
committerMatt Clay <matt@mystile.com>2018-08-27 21:38:50 -0700
commit22d5f5d97fe94c70a80a251b44850876b050b1d6 (patch)
tree299ca990caa6e02aa589ca450b2584d048b35c50
parentc0aaf0fff765f67339dfef20081a15cb7f99fc40 (diff)
downloadansible-22d5f5d97fe94c70a80a251b44850876b050b1d6.tar.gz
Get packages for dnf and yum tests from S3.
-rw-r--r--test/integration/targets/dnf/tasks/dnf.yml6
-rw-r--r--test/integration/targets/yum/tasks/yum.yml4
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