Get packages for dnf and yum tests from S3.

This commit is contained in:
Matt Clay 2018-08-27 21:12:36 -07:00
parent c0aaf0fff7
commit 22d5f5d97f
2 changed files with 5 additions and 5 deletions

View file

@ -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

View file

@ -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