<html><head><meta http-equiv="Content-Type" content="text/html charset=iso-8859-1"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">Hi Dave,<div><br></div><div>I can replicate this consistently. &nbsp;The only repo I disabled was the Stable oVirt definition, to enable only the Beta:</div><div><br></div><div><div>name=Stable builds of the oVirt project</div><div>baseurl=<a href="http://ovirt.org/releases/updates-testing/rpm/EL/$releasever/">http://ovirt.org/releases/updates-testing/rpm/EL/$releasever/</a></div><div>enabled=0</div><div>skip_if_unavailable=1</div><div>gpgcheck=0</div><div>priority=20</div></div><div><br></div><div><div>[ovirt-beta]</div><div>name=Beta builds of the oVirt project</div><div>baseurl=<a href="http://ovirt.org/releases/beta/rpm/EL/$releasever/">http://ovirt.org/releases/beta/rpm/EL/$releasever/</a></div><div>enabled=1</div><div>skip_if_unavailable=1</div><div>gpgcheck=0</div><div>priority=20</div></div><div><br></div><div>Otherwise, this is a vanilla install! &nbsp;Could it be a similar regression to this issue?</div><div><br></div><div><a href="http://list-archives.org/2013/07/31/users-ovirt-org/vdsm-v4-12-0-dependencies-for-el6-hosts/f/2841672598">http://list-archives.org/2013/07/31/users-ovirt-org/vdsm-v4-12-0-dependencies-for-el6-hosts/f/2841672598</a></div><div><br></div><div>Thanks,</div><div><br></div><div>James</div><div><br><div><div>On 12 Sep 2013, at 19:49, Dave Neary &lt;<a href="mailto:dneary@redhat.com">dneary@redhat.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite">Hi James,<br><br>I didn't have the same issues - is that because I disabled one or more<br>of the repos, or purely luck in the order the repos were processed for me?<br><br>Thanks,<br>Dave.<br><br>On 09/12/2013 06:39 PM, James Wilson wrote:<br><blockquote type="cite">Hi,<br><br>I've just performed a clean install of CentOS 6.4 x86_64 (Minimal) along with oVirt 3.3 from the official EL6 Beta repository. &nbsp;This resulted in dependency conflicts between the official oVirt repo and EPEL.<br><br>The following repositories were installed and activated:<br><br># yum localinstall <a href="http://resources.ovirt.org/releases/ovirt-release-el6-8-1.noarch.rpm">http://resources.ovirt.org/releases/ovirt-release-el6-8-1.noarch.rpm</a> -y<br># yum localinstall <a href="http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm">http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm</a> -y<br><br>Followed by installation of the main oVirt engine and all-in-one configuration:<br><br># yum install ovirt-engine-setup-plugin-allinone -y<br><br>This resulted in the following fatal error:<br><br>Error: Package: vdsm-4.12.1-2.el6.x86_64 (ovirt-beta)<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Requires: mom &gt;= 0.3.2-3<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Available: mom-0.3.0-1.el6.noarch (epel)<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mom = 0.3.0-1.el6<br>Error: Package: glusterfs-api-3.4.0-8.el6.x86_64 (glusterfs-epel)<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Requires: glusterfs = 3.4.0-8.el6<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Available: glusterfs-3.2.7-1.el6.i686 (epel)<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;glusterfs = 3.2.7-1.el6<br>Error: Package: vdsm-4.12.1-2.el6.x86_64 (ovirt-beta)<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Requires: glusterfs &gt;= 3.4.0<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Available: glusterfs-3.2.7-1.el6.i686 (epel)<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;glusterfs = 3.2.7-1.el6<br> You could try using --skip-broken to work around the problem<br> You could try running: rpm -Va --nofiles --nodigest<br><br>To resolve, priorities have to be set within the yum repository definitions:<br><br># yum install yum-priorities<br><br>Adding arbitrary priorities to the oVirt and EPEL repositories rectified the issue - giving EPEL a lower value. &nbsp;For example:<br><br>/etc/yum.repos.d/el6-ovirt.repo <br><br>[ovirt-beta]<br>name=Beta builds of the oVirt project<br>baseurl=<a href="http://ovirt.org/releases/beta/rpm/EL/$releasever/">http://ovirt.org/releases/beta/rpm/EL/$releasever/</a><br>enabled=1<br>skip_if_unavailable=1<br>gpgcheck=0<br>priority=20<br>priority=20<br><br>/etc/yum.repos.d/epel.repo <br><br>[epel]<br>name=Extra Packages for Enterprise Linux 6 - $basearch<br>#baseurl=<a href="http://download.fedoraproject.org/pub/epel/6/$basearch">http://download.fedoraproject.org/pub/epel/6/$basearch</a><br>mirrorlist=<a href="https://mirrors.fedoraproject.org/metalink?repo=epel-6&amp;arch=$basearch">https://mirrors.fedoraproject.org/metalink?repo=epel-6&amp;arch=$basearch</a><br>failovermethod=priority<br>enabled=1<br>gpgcheck=1<br>gpgkey=<a href="file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6">file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6</a><br>priority=25<br><br>The priority setting must be enabled for each repo definition, &nbsp;Once complete, the installation succeeds without issue.<br><br>Hope this helps!<br><br>James<br>_______________________________________________<br>Users mailing list<br><a href="mailto:Users@ovirt.org">Users@ovirt.org</a><br>http://lists.ovirt.org/mailman/listinfo/users<br><br></blockquote><br>-- <br>Dave Neary - Community Action and Impact<br>Open Source and Standards, Red Hat - <a href="http://community.redhat.com">http://community.redhat.com</a><br>Ph: +33 9 50 71 55 62 / Cell: +33 6 77 01 92 13<br></blockquote></div><br></div></body></html>