Accepting request 708171 from filesystems:ceph:nautilus

M17 candidate

OBS-URL: https://build.opensuse.org/request/show/708171
OBS-URL: https://build.opensuse.org/package/show/filesystems:ceph/ceph-iscsi?expand=0&rev=39
This commit is contained in:
Nathan Cutler 2019-06-06 16:20:43 +00:00 committed by Git OBS Bridge
parent 868a949275
commit 95a8c378c0
4 changed files with 29 additions and 15 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4bffcc8ba1ff8399dfdcce8b065ef8a1cc928503323a2a8f8485e76489c09411
size 128634

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:94c9f95a54539284db25ceeee766df1a8bd1adf5412c3e08e4c7d6c7e004b3b7
size 128686

View File

@ -1,13 +1,15 @@
-------------------------------------------------------------------
Thu Jun 6 10:04:00 UTC 2019 - Nathan Cutler <ncutler@suse.com>
Thu Jun 6 18:18:00 UTC 2019 - Nathan Cutler <ncutler@suse.com>
- Update to 3.0+1559815396.g7aa8f7f:
- Update to 3.0+1559837868.g8be74cf:
+ Set 'SUSE' SCSI vendor (bsc#1136769)
+ Adds support for multiple IPs per gateway (bsc#1136757)
+ Do not allow lrbd to be installed simultaneously with ceph-iscsi
+ Temporary workaround to support ',' in configshell params (must be removed/reverted in the future, after configshell >= 1.1.f25 is available)
+ Temporary workaround to support ',' in configshell params (must be
removed/reverted in the future, after configshell >= 1.1.f25 is available)
+ Fix problem deleting target with clients/disks
+ Removes the disk 'delete' command
+ spec: conflict with lrbd <= 3.0 to ensure lrbd is not installed
simultaneously with ceph-iscsi
-------------------------------------------------------------------
Tue May 21 19:09:22 UTC 2019 - Nathan Cutler <ncutler@suse.com>

View File

@ -20,7 +20,7 @@
Name: ceph-iscsi
Version: 3.0+1559815396.g7aa8f7f
Version: 3.0+1559837868.g8be74cf
Release: 1%{?dist}
Group: System/Filesystems
Summary: Python modules for Ceph iSCSI gateway configuration management
@ -72,12 +72,16 @@ Requires: python3-configshell >= 1.1.fb23
%endif
%endif
%if 0%{?suse_version}
Conflicts: lrbd
%endif
%if 0%{?rhel} < 8
BuildRequires: systemd
%else
BuildRequires: systemd-rpm-macros
%{?systemd_requires}
%endif
%if 0%{?suse_version}
Conflicts: lrbd < 3.0
%endif
%description
Python package providing the modules used to handle the configuration of an
@ -140,7 +144,12 @@ ln -s service %{buildroot}%{_sbindir}/rcrbd-target-api
%endif
%post
%if 0%{?fedora} || 0%{?rhel}
%if 0%{?rhel} < 8
/bin/systemctl --system daemon-reload &> /dev/null || :
/bin/systemctl --system enable rbd-target-gw &> /dev/null || :
/bin/systemctl --system enable rbd-target-api &> /dev/null || :
%endif
%if 0%{?fedora} || 0%{?rhel} >= 8
%systemd_post rbd-target-gw.service
%systemd_post rbd-target-api.service
%endif
@ -149,7 +158,7 @@ ln -s service %{buildroot}%{_sbindir}/rcrbd-target-api
%endif
%preun
%if 0%{?fedora} || 0%{?rhel}
%if 0%{?fedora} || 0%{?rhel} >= 8
%systemd_preun rbd-target-gw.service
%systemd_preun rbd-target-api.service
%endif
@ -158,7 +167,10 @@ ln -s service %{buildroot}%{_sbindir}/rcrbd-target-api
%endif
%postun
%if 0%{?fedora} || 0%{?rhel}
%if 0%{?rhel} < 8
/bin/systemctl --system daemon-reload &> /dev/null || :
%endif
%if 0%{?fedora} || 0%{?rhel} >= 8
%systemd_postun rbd-target-gw.service
%systemd_postun rbd-target-api.service
%endif