uboreas / centos-8-minimal

Create minimal CentOS 8 installation ISO with customized packages.
62 stars 30 forks source link

use only HTTP links from Yum #17

Closed ezbik closed 4 years ago

ezbik commented 4 years ago

The issue: some packages return rsync:// as desired protocol, e.g.:

# yumdownloader --urls cvs 
Last metadata expiration check: 0:12:25 ago on Wed Jun 10 17:06:10 2020.
rsync://mirror.omnilance.com/epel/8/Everything/x86_64/Packages/c/cvs-1.11.23-52.el8.x86_64.rpm

.. thus can't be downloaded.

The fix:

-  yumdownloader --urls 
+ yumdownloader --urlprotocol http --urls

.. across all the code in bootstrap.sh

uboreas commented 4 years ago

Thanks @ezbik for the suggrestion.