forked from pool/multipath-tools
Accepting request 1197370 from Base:System
- Update to 0.10.0+103+suse.0fc97cd - Update to upstream 0.10.0 (see also NEWS.md) * The `multipathd show daemon` command now shows `(reconfigure pending)` if a reconfiguration has been triggered but not finished yet. * Refactored the path checker loop. Paths are now checked for each multipath map in turn * Renamed public functions, variables, and macros to comply with the glibc policy for reserved names (gh#opensvc/multipath-tools#91) * Fixed bug that caused queueing to be always disabled if flushing a map failed (bug introduced in 0.9.8). (bsc#1229898) * Fixed failure to remove maps even with `deferred_remove` (bug introduced in 0.9.9). (bsc#1229898) * Fixed old mpathpersist bug leading to the error message "configured reservation key doesn't match: 0x0" when `reservation_key` was configured in the multipaths section of `multipath.conf`. (bsc#1228926, gh#opensvc/multipath-tools#92) * Fixed output of `multipath -t` and `multipath -T` for the options `force_sync` and `retrigger_tries`. (bsc#1229898, gh#opensvc/multipath-tools#88) * Fixed adding maps by WWID in CLI (command `add map $WWID`). (bsc#1229898) (bug introduced in 0.9.8). (bsc#1229898) (bug introduced in 0.9.9). (bsc#1229898) (forwarded request 1197366 from mwilck) OBS-URL: https://build.opensuse.org/request/show/1197370 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/multipath-tools?expand=0&rev=166
This commit is contained in:
commit
cd26e19ec4
2
_service
2
_service
@ -6,7 +6,7 @@
|
|||||||
<param name="filename">multipath-tools</param>
|
<param name="filename">multipath-tools</param>
|
||||||
<param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@+suse.%h</param>
|
<param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@+suse.%h</param>
|
||||||
<param name="revision">factory</param>
|
<param name="revision">factory</param>
|
||||||
<param name="match-tag">0.[0-9].[0-9]*</param>
|
<param name="match-tag">0.[0-9]*.[0-9]*</param>
|
||||||
<param name="versionrewrite-pattern">[-]pre\.([0-9])</param>
|
<param name="versionrewrite-pattern">[-]pre\.([0-9])</param>
|
||||||
<param name="versionrewrite-replacement">~\1</param>
|
<param name="versionrewrite-replacement">~\1</param>
|
||||||
<param name="changesgenerate">enable</param>
|
<param name="changesgenerate">enable</param>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<servicedata>
|
<servicedata>
|
||||||
<service name="tar_scm">
|
<service name="tar_scm">
|
||||||
<param name="url">https://github.com/openSUSE/multipath-tools.git</param>
|
<param name="url">https://github.com/openSUSE/multipath-tools.git</param>
|
||||||
<param name="changesrevision">0c835ef27a5229d20860232ee019c97e9ab24b90</param></service></servicedata>
|
<param name="changesrevision">0fc97cdcccc8f3f634711f44f4010c2c652364ef</param></service></servicedata>
|
BIN
multipath-tools-0.10.0+103+suse.0fc97cd.obscpio
(Stored with Git LFS)
Normal file
BIN
multipath-tools-0.10.0+103+suse.0fc97cd.obscpio
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:f15923205ecadfd08dba8dee98e51a94822533ff33c39a13195b308dd793b91f
|
|
||||||
size 2951180
|
|
@ -1,3 +1,26 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Aug 29 07:00:18 UTC 2024 - Martin Wilck <mwilck@suse.com>
|
||||||
|
|
||||||
|
- Update to 0.10.0+103+suse.0fc97cd
|
||||||
|
|
||||||
|
- Update to upstream 0.10.0 (see also NEWS.md)
|
||||||
|
* The `multipathd show daemon` command now shows `(reconfigure pending)`
|
||||||
|
if a reconfiguration has been triggered but not finished yet.
|
||||||
|
* Refactored the path checker loop. Paths are now checked for each multipath
|
||||||
|
map in turn
|
||||||
|
* Renamed public functions, variables, and macros to comply with the glibc policy
|
||||||
|
for reserved names (gh#opensvc/multipath-tools#91)
|
||||||
|
* Fixed bug that caused queueing to be always disabled if flushing a map failed
|
||||||
|
(bug introduced in 0.9.8). (bsc#1229898)
|
||||||
|
* Fixed failure to remove maps even with `deferred_remove` (bug introduced in
|
||||||
|
0.9.9). (bsc#1229898)
|
||||||
|
* Fixed old mpathpersist bug leading to the error message "configured reservation
|
||||||
|
key doesn't match: 0x0" when `reservation_key` was configured in the
|
||||||
|
multipaths section of `multipath.conf`. (bsc#1228926, gh#opensvc/multipath-tools#92)
|
||||||
|
* Fixed output of `multipath -t` and `multipath -T` for the options
|
||||||
|
`force_sync` and `retrigger_tries`. (bsc#1229898, gh#opensvc/multipath-tools#88)
|
||||||
|
* Fixed adding maps by WWID in CLI (command `add map $WWID`). (bsc#1229898)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 19 16:01:19 UTC 2024 - Martin Wilck <mwilck@suse.com>
|
Fri Jul 19 16:01:19 UTC 2024 - Martin Wilck <mwilck@suse.com>
|
||||||
|
|
||||||
@ -6,9 +29,9 @@ Fri Jul 19 16:01:19 UTC 2024 - Martin Wilck <mwilck@suse.com>
|
|||||||
* Added hardware defaults for Huawei storage arrays and XSG1 vendors
|
* Added hardware defaults for Huawei storage arrays and XSG1 vendors
|
||||||
* Refactored and improved the libultipath / libdevmapper interface
|
* Refactored and improved the libultipath / libdevmapper interface
|
||||||
* Fixed bug that caused queueing to be always disabled if flushing a map failed
|
* Fixed bug that caused queueing to be always disabled if flushing a map failed
|
||||||
(bug introduced in 0.9.8).
|
(bug introduced in 0.9.8). (bsc#1229898)
|
||||||
* Fixed failure to remove maps even with `deferred_remove`
|
* Fixed failure to remove maps even with `deferred_remove`
|
||||||
(bug introduced in 0.9.9).
|
(bug introduced in 0.9.9). (bsc#1229898)
|
||||||
* CI improvements
|
* CI improvements
|
||||||
* Documentation fixes
|
* Documentation fixes
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
name: multipath-tools
|
name: multipath-tools
|
||||||
version: 0.9.9+161+suse.0c835ef
|
version: 0.10.0+103+suse.0fc97cd
|
||||||
mtime: 1721316616
|
mtime: 1724914433
|
||||||
commit: 0c835ef27a5229d20860232ee019c97e9ab24b90
|
commit: 0fc97cdcccc8f3f634711f44f4010c2c652364ef
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
%define libdmmp_version %(echo %{_libdmmp_version} | tr . _)
|
%define libdmmp_version %(echo %{_libdmmp_version} | tr . _)
|
||||||
|
|
||||||
Name: multipath-tools
|
Name: multipath-tools
|
||||||
Version: 0.9.9+161+suse.0c835ef
|
Version: 0.10.0+103+suse.0fc97cd
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Tools to Manage Multipathed Devices with the device-mapper
|
Summary: Tools to Manage Multipathed Devices with the device-mapper
|
||||||
License: GPL-2.0-only AND GPL-3.0-or-later
|
License: GPL-2.0-only AND GPL-3.0-or-later
|
||||||
|
Loading…
x
Reference in New Issue
Block a user