Accepting request 701777 from filesystems:ceph:nautilus

M15 candidate

OBS-URL: https://build.opensuse.org/request/show/701777
OBS-URL: https://build.opensuse.org/package/show/filesystems:ceph/ceph-iscsi?expand=0&rev=31
This commit is contained in:
Nathan Cutler 2019-05-09 10:33:02 +00:00 committed by Git OBS Bridge
parent 90d8535cf6
commit 13335bf4b4
4 changed files with 22 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:c50bbec855c4479f40a7516fe087b11182a3863cc4e133aec518c6af19449d25
size 127905

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
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>

View File

@ -20,7 +20,7 @@
Name: ceph-iscsi
Version: 3.0+1556546618.g28a0e8a
Version: 3.0+1557397680.g929bd14
Release: 1%{?dist}
Group: System/Filesystems
Summary: Python modules for Ceph iSCSI gateway configuration management
@ -72,7 +72,8 @@ Requires: python3-configshell
%endif
%endif
BuildRequires: systemd
BuildRequires: systemd-rpm-macros
%{?systemd_requires}
%description
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
%if 0%{?fedora} || 0%{?rhel}
/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 || :
%systemd_post rbd-target-gw.service
%systemd_post rbd-target-api.service
%endif
%if 0%{?suse_version}
%service_add_post rbd-target-gw.service rbd-target-api.service
%endif
%preun
%if 0%{?fedora} || 0%{?rhel}
%systemd_preun rbd-target-gw.service
%systemd_preun rbd-target-api.service
%endif
%if 0%{?suse_version}
%service_del_preun rbd-target-gw.service rbd-target-api.service
%endif
%postun
%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
%if 0%{?suse_version}
%service_del_postun rbd-target-gw.service rbd-target-api.service