Tal Nisan has uploaded a new change for review. Change subject: spec: Require newer multipath version ......................................................................
spec: Require newer multipath version There is a race between udev and multiapth which is solved in newer multipath versions, this patch requires those versions on RHEL 7.2 and Fedora 21,22 and 23 We don't require the package on CentOS, since it is not available yet. Change-Id: I63a607aa0d8df678666d87eb593e37bb0331dd82 Signed-off-by: Tal Nisan <[email protected]> Bug-Url: https://bugzilla.redhat.com/1265204 --- M vdsm.spec.in 1 file changed, 10 insertions(+), 4 deletions(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/13/49113/2 diff --git a/vdsm.spec.in b/vdsm.spec.in index 6466988..862c010 100644 --- a/vdsm.spec.in +++ b/vdsm.spec.in @@ -183,7 +183,7 @@ %if 0%{?centos} Requires: device-mapper-multipath >= 0.4.9-68 %else -Requires: device-mapper-multipath >= 0.4.9-77.el7_1.2 +Requires: device-mapper-multipath >= 0.4.9-84.el7 %endif Requires: e2fsprogs Requires: fence-agents-all @@ -207,10 +207,16 @@ # Subprocess and thread bug was found on python 2.7.2 Requires: python >= 2.7.3 Requires: initscripts >= 9.42.2-1 -%if 0%{?fedora} >= 22 -Requires: device-mapper-multipath >= 0.4.9-73.fc22.1 +%if 0%{?fedora} == 21 +Requires: device-mapper-multipath >= 0.4.9-68.fc21.6 %else -Requires: device-mapper-multipath >= 0.4.9-56 +%if 0%{?fedora} == 22 +Requires: device-mapper-multipath >= 0.4.9-73.fc22.2 +%else +%if 0%{?fedora} >= 23 +Requires: device-mapper-multipath >= 0.4.9-80.fc23 +%endif +%endif %endif Requires: e2fsprogs >= 1.41.14 %if 0%{?fedora} >= 23 -- To view, visit https://gerrit.ovirt.org/49113 To unsubscribe, visit https://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I63a607aa0d8df678666d87eb593e37bb0331dd82 Gerrit-PatchSet: 2 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Tal Nisan <[email protected]> Gerrit-Reviewer: Ala Hino <[email protected]> Gerrit-Reviewer: Amit Aviram <[email protected]> Gerrit-Reviewer: Freddy Rolland <[email protected]> Gerrit-Reviewer: Idan Shaby <[email protected]> Gerrit-Reviewer: Nir Soffer <[email protected]> Gerrit-Reviewer: Vered Volansky <[email protected]> Gerrit-Reviewer: gerrit-hooks <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
