Browse code

Get packages for dnf and yum tests from S3.

(cherry picked from commit 22d5f5d97fe94c70a80a251b44850876b050b1d6)

Matt Clay authored on 2018/08/28 13:12:36
Showing 2 changed files
... ...
@@ -374,7 +374,7 @@
374 374
 
375 375
 - name: try to install from non existing url
376 376
   dnf:
377
-    name: http://non-existing.com/non-existing-1.0.0.fc26.noarch.rpm
377
+    name: https://s3.amazonaws.com/ansible-ci-files/test/integration/targets/dnf/non-existing-1.0.0.fc26.noarch.rpm
378 378
     state: present
379 379
   register: dnf_result
380 380
   ignore_errors: yes
... ...
@@ -380,7 +380,7 @@
380 380
 
381 381
 - name: try to install from non existing url
382 382
   yum:
383
-    name: http://non-existing.com/non-existing-1.0.0.fc26.noarch.rpm
383
+    name: https://s3.amazonaws.com/ansible-ci-files/test/integration/targets/yum/non-existing-1.0.0.fc26.noarch.rpm
384 384
     state: present
385 385
   register: yum_result
386 386
   ignore_errors: yes
... ...
@@ -428,7 +428,7 @@
428 428
 
429 429
 - name: try to install not compatible arch rpm, should fail
430 430
   yum:
431
-    name: http://download.fedoraproject.org/pub/epel/7/ppc64le/Packages/b/banner-1.3.4-3.el7.ppc64le.rpm
431
+    name: https://s3.amazonaws.com/ansible-ci-files/test/integration/targets/yum/banner-1.3.4-3.el7.ppc64le.rpm
432 432
     state: present
433 433
   register: yum_result
434 434
   ignore_errors: True