Accepting request 701825 from filesystems:ceph

M15 candidate (forwarded request 701824 from smithfarm)

OBS-URL: https://build.opensuse.org/request/show/701825
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ceph-iscsi?expand=0&rev=11
This commit is contained in:
Dominique Leuenberger 2019-05-10 07:19:57 +00:00 committed by Git OBS Bridge
commit 84fa4f337f
4 changed files with 28 additions and 9 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:22e64830e61d0a051ad66399faa23e02ea96dcdd70c1f6d5a284136b549eb212
size 127630

View File

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

View File

@ -1,3 +1,17 @@
-------------------------------------------------------------------
Thu May 9 15:21:26 UTC 2019 - Nathan Cutler <ncutler@suse.com>
- Update to 3.0+1557415271.g940ac86:
+ Fix race condition on target disk add (bsc#1134479)
-------------------------------------------------------------------
Thu May 9 10:28:06 UTC 2019 - Nathan Cutler <ncutler@suse.com>
- Update to 3.0+1557397680.g929bd14:
+ logger level is now configurable
+ tcmu-runner supports all RBD features
+ allow deletion of a target that doesn't exist in LIO
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 29 14:04:00 UTC 2019 - Nathan Cutler <ncutler@suse.com> Mon Apr 29 14:04:00 UTC 2019 - Nathan Cutler <ncutler@suse.com>

View File

@ -20,7 +20,7 @@
Name: ceph-iscsi Name: ceph-iscsi
Version: 3.0+1556546618.g28a0e8a Version: 3.0+1557415271.g940ac86
Release: 1%{?dist} Release: 1%{?dist}
Group: System/Filesystems Group: System/Filesystems
Summary: Python modules for Ceph iSCSI gateway configuration management Summary: Python modules for Ceph iSCSI gateway configuration management
@ -72,7 +72,8 @@ Requires: python3-configshell
%endif %endif
%endif %endif
BuildRequires: systemd BuildRequires: systemd-rpm-macros
%{?systemd_requires}
%description %description
Python package providing the modules used to handle the configuration of an Python package providing the modules used to handle the configuration of an
@ -136,22 +137,26 @@ ln -s service %{buildroot}%{_sbindir}/rcrbd-target-api
%post %post
%if 0%{?fedora} || 0%{?rhel} %if 0%{?fedora} || 0%{?rhel}
/bin/systemctl --system daemon-reload &> /dev/null || : %systemd_post rbd-target-gw.service
/bin/systemctl --system enable rbd-target-gw &> /dev/null || : %systemd_post rbd-target-api.service
/bin/systemctl --system enable rbd-target-api &> /dev/null || :
%endif %endif
%if 0%{?suse_version} %if 0%{?suse_version}
%service_add_post rbd-target-gw.service rbd-target-api.service %service_add_post rbd-target-gw.service rbd-target-api.service
%endif %endif
%preun %preun
%if 0%{?fedora} || 0%{?rhel}
%systemd_preun rbd-target-gw.service
%systemd_preun rbd-target-api.service
%endif
%if 0%{?suse_version} %if 0%{?suse_version}
%service_del_preun rbd-target-gw.service rbd-target-api.service %service_del_preun rbd-target-gw.service rbd-target-api.service
%endif %endif
%postun %postun
%if 0%{?fedora} || 0%{?rhel} %if 0%{?fedora} || 0%{?rhel}
/bin/systemctl --system daemon-reload &> /dev/null || : %systemd_postun rbd-target-gw.service
%systemd_postun rbd-target-api.service
%endif %endif
%if 0%{?suse_version} %if 0%{?suse_version}
%service_del_postun rbd-target-gw.service rbd-target-api.service %service_del_postun rbd-target-gw.service rbd-target-api.service