
(Sorry for replying earlier without reading the later replies) On Fri, Feb 17, 2017 at 7:23 PM, Martin Perina <mperina@redhat.com> wrote:
Ahh, now I finally see the issue: on Centos $releasever is always expanded to major release number (7 in this case). But on downstream RHEL it's expanded to 7Server or 7Workstation depending on your installation. To fix your issue locally please replace 'el$releasever' with 'el7':
cd /etc/yum.repos.d/ mv ovirt-4.1.repo ovirt-4.1.xxx mv ovirt-4.1-dependencies.repo ovirt-4.1-dependencies.xxx cat ovirt-4.1.xxx | sed 's/el\$releasever/el7/g' > ovirt-4.1.repo cat ovirt-4.1-dependencies.xxx | sed 's/el\$releasever/el7/g' > ovirt-4.1-dependencies.repo rm ovirt-4.1.xxx rm ovirt-4.1-dependencies.xxx
@Sandro, can we fix that issue permanently for all existing ovirt-release* files?
Created the links in 4.1 repo for now. Best, -- Didi