2013-04-02 14:04:51 +00:00
|
|
|
%define with_systemd 0%{!?_without_systemd:0}
|
|
|
|
|
|
|
|
%if 0%{?fedora} >= 17 || 0%{?rhel} >= 7
|
|
|
|
%define with_systemd 1
|
|
|
|
%endif
|
|
|
|
|
2011-02-15 23:38:07 +00:00
|
|
|
Name: sanlock
|
2017-12-12 18:00:38 +00:00
|
|
|
Version: 3.6.0
|
2018-03-14 15:39:34 +00:00
|
|
|
Release: 3%{?dist}
|
2013-07-24 19:24:47 +00:00
|
|
|
Summary: A shared storage lock manager
|
2011-02-15 23:38:07 +00:00
|
|
|
|
|
|
|
Group: System Environment/Base
|
2012-03-21 21:36:47 +00:00
|
|
|
License: GPLv2 and GPLv2+ and LGPLv2+
|
2017-12-12 18:00:38 +00:00
|
|
|
URL: https://pagure.io/sanlock/
|
2011-06-14 22:26:27 +00:00
|
|
|
BuildRequires: libblkid-devel libaio-devel python python-devel
|
2013-04-02 14:04:51 +00:00
|
|
|
%if %{with_systemd}
|
2012-11-06 20:03:24 +00:00
|
|
|
BuildRequires: systemd-units
|
|
|
|
%endif
|
2011-05-09 20:34:42 +00:00
|
|
|
Requires: %{name}-lib = %{version}-%{release}
|
2012-06-15 14:17:21 +00:00
|
|
|
Requires(pre): /usr/sbin/groupadd
|
|
|
|
Requires(pre): /usr/sbin/useradd
|
2013-04-02 14:04:51 +00:00
|
|
|
%if %{with_systemd}
|
|
|
|
Requires(post): systemd-units
|
|
|
|
Requires(post): systemd-sysv
|
|
|
|
Requires(preun): systemd-units
|
|
|
|
Requires(postun): systemd-units
|
|
|
|
%endif
|
2017-05-01 16:44:29 +00:00
|
|
|
Source0: https://releases.pagure.org/sanlock/%{name}-%{version}.tar.gz
|
2013-01-13 11:00:41 +00:00
|
|
|
|
2016-02-22 19:22:21 +00:00
|
|
|
# Patch0: 0001-foo.patch
|
2012-11-06 20:03:24 +00:00
|
|
|
|
2011-02-15 23:38:07 +00:00
|
|
|
%description
|
2015-06-19 18:09:53 +00:00
|
|
|
The sanlock daemon manages leases for applications on hosts using shared storage.
|
2011-02-15 23:38:07 +00:00
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
2016-02-22 19:22:21 +00:00
|
|
|
# %patch0 -p1 -b .0001-foo.patch
|
2011-02-15 23:38:07 +00:00
|
|
|
|
|
|
|
%build
|
2018-03-14 15:39:34 +00:00
|
|
|
%set_build_flags
|
2011-02-15 23:38:07 +00:00
|
|
|
# upstream does not require configure
|
|
|
|
# upstream does not support _smp_mflags
|
2011-02-17 16:53:23 +00:00
|
|
|
CFLAGS=$RPM_OPT_FLAGS make -C wdmd
|
|
|
|
CFLAGS=$RPM_OPT_FLAGS make -C src
|
2011-05-09 20:34:42 +00:00
|
|
|
CFLAGS=$RPM_OPT_FLAGS make -C python
|
2014-08-18 18:54:40 +00:00
|
|
|
CFLAGS=$RPM_OPT_FLAGS make -C reset
|
2011-02-15 23:38:07 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
2011-02-17 16:53:23 +00:00
|
|
|
make -C src \
|
2011-09-16 19:10:59 +00:00
|
|
|
install LIBDIR=%{_libdir} \
|
2011-02-15 23:38:07 +00:00
|
|
|
DESTDIR=$RPM_BUILD_ROOT
|
2011-02-18 15:04:41 +00:00
|
|
|
make -C wdmd \
|
2011-09-16 19:10:59 +00:00
|
|
|
install LIBDIR=%{_libdir} \
|
2011-02-18 15:04:41 +00:00
|
|
|
DESTDIR=$RPM_BUILD_ROOT
|
2011-05-09 20:34:42 +00:00
|
|
|
make -C python \
|
2011-09-16 19:10:59 +00:00
|
|
|
install LIBDIR=%{_libdir} \
|
2011-05-09 20:34:42 +00:00
|
|
|
DESTDIR=$RPM_BUILD_ROOT
|
2014-08-18 18:54:40 +00:00
|
|
|
make -C reset \
|
|
|
|
install LIBDIR=%{_libdir} \
|
|
|
|
DESTDIR=$RPM_BUILD_ROOT
|
2012-03-21 21:36:47 +00:00
|
|
|
|
2013-04-02 14:04:51 +00:00
|
|
|
|
|
|
|
%if %{with_systemd}
|
2016-02-22 19:22:21 +00:00
|
|
|
install -D -m 0644 init.d/sanlock.service.native $RPM_BUILD_ROOT/%{_unitdir}/sanlock.service
|
|
|
|
install -D -m 0755 init.d/wdmd $RPM_BUILD_ROOT/usr/lib/systemd/systemd-wdmd
|
|
|
|
install -D -m 0644 init.d/wdmd.service.native $RPM_BUILD_ROOT/%{_unitdir}/wdmd.service
|
2014-08-18 18:54:40 +00:00
|
|
|
install -D -m 0644 init.d/sanlk-resetd.service $RPM_BUILD_ROOT/%{_unitdir}/sanlk-resetd.service
|
2012-05-30 21:15:44 +00:00
|
|
|
%else
|
2013-01-02 09:44:22 +00:00
|
|
|
install -D -m 0755 init.d/sanlock $RPM_BUILD_ROOT/%{_initddir}/sanlock
|
|
|
|
install -D -m 0755 init.d/wdmd $RPM_BUILD_ROOT/%{_initddir}/wdmd
|
2012-05-30 21:15:44 +00:00
|
|
|
%endif
|
2012-03-21 21:36:47 +00:00
|
|
|
|
2013-01-02 09:44:22 +00:00
|
|
|
install -D -m 0644 src/logrotate.sanlock \
|
2012-03-21 21:36:47 +00:00
|
|
|
$RPM_BUILD_ROOT/etc/logrotate.d/sanlock
|
|
|
|
|
2015-06-19 18:09:53 +00:00
|
|
|
install -D -m 0644 src/sanlock.conf \
|
|
|
|
$RPM_BUILD_ROOT/etc/sanlock/sanlock.conf
|
|
|
|
|
2013-01-02 09:41:50 +00:00
|
|
|
install -D -m 0644 init.d/wdmd.sysconfig \
|
2015-06-19 18:09:53 +00:00
|
|
|
$RPM_BUILD_ROOT/etc/sysconfig/wdmd
|
2012-10-09 16:54:26 +00:00
|
|
|
|
2013-01-02 09:44:22 +00:00
|
|
|
install -Dd -m 0755 $RPM_BUILD_ROOT/etc/wdmd.d
|
|
|
|
install -Dd -m 0775 $RPM_BUILD_ROOT/%{_localstatedir}/run/sanlock
|
2014-08-18 18:54:40 +00:00
|
|
|
install -Dd -m 0775 $RPM_BUILD_ROOT/%{_localstatedir}/run/sanlk-resetd
|
2012-07-24 16:17:59 +00:00
|
|
|
|
2011-05-09 20:34:42 +00:00
|
|
|
%pre
|
2012-03-21 21:36:47 +00:00
|
|
|
getent group sanlock > /dev/null || /usr/sbin/groupadd \
|
|
|
|
-g 179 sanlock
|
|
|
|
getent passwd sanlock > /dev/null || /usr/sbin/useradd \
|
|
|
|
-u 179 -c "sanlock" -s /sbin/nologin -r \
|
|
|
|
-g 179 -d /var/run/sanlock sanlock
|
2012-10-09 16:54:26 +00:00
|
|
|
/usr/sbin/usermod -a -G disk sanlock
|
2011-05-09 20:34:42 +00:00
|
|
|
|
|
|
|
%post
|
2013-04-02 14:04:51 +00:00
|
|
|
%if %{with_systemd}
|
|
|
|
%systemd_post wdmd.service sanlock.service
|
|
|
|
%endif
|
2011-02-15 23:38:07 +00:00
|
|
|
|
2011-05-09 20:34:42 +00:00
|
|
|
%preun
|
2013-04-02 14:04:51 +00:00
|
|
|
%if %{with_systemd}
|
2016-02-22 19:22:21 +00:00
|
|
|
%systemd_preun wdmd.service sanlock.service
|
2013-04-02 14:04:51 +00:00
|
|
|
%endif
|
2011-05-09 20:34:42 +00:00
|
|
|
|
|
|
|
%postun
|
2013-04-02 14:04:51 +00:00
|
|
|
%if %{with_systemd}
|
2016-02-22 19:22:21 +00:00
|
|
|
%systemd_postun
|
2013-04-02 14:04:51 +00:00
|
|
|
%endif
|
2011-02-15 23:38:07 +00:00
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
2013-04-02 14:04:51 +00:00
|
|
|
%if %{with_systemd}
|
2016-02-22 19:22:21 +00:00
|
|
|
/usr/lib/systemd/systemd-wdmd
|
2012-04-05 14:50:04 +00:00
|
|
|
%{_unitdir}/sanlock.service
|
|
|
|
%{_unitdir}/wdmd.service
|
2012-05-30 21:15:44 +00:00
|
|
|
%else
|
|
|
|
%{_initddir}/sanlock
|
|
|
|
%{_initddir}/wdmd
|
|
|
|
%endif
|
2011-02-15 23:38:07 +00:00
|
|
|
%{_sbindir}/sanlock
|
2011-02-18 15:04:41 +00:00
|
|
|
%{_sbindir}/wdmd
|
2015-06-19 18:09:53 +00:00
|
|
|
%dir %{_sysconfdir}/wdmd.d
|
|
|
|
%dir %{_sysconfdir}/sanlock
|
2012-07-24 16:17:59 +00:00
|
|
|
%dir %attr(-,sanlock,sanlock) %{_localstatedir}/run/sanlock
|
2011-09-16 19:10:59 +00:00
|
|
|
%{_mandir}/man8/wdmd*
|
|
|
|
%{_mandir}/man8/sanlock*
|
2012-03-21 21:36:47 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/logrotate.d/sanlock
|
2015-06-19 18:09:53 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/sanlock/sanlock.conf
|
2012-10-09 16:54:26 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/wdmd
|
2016-02-22 19:22:21 +00:00
|
|
|
%doc init.d/sanlock
|
|
|
|
%doc init.d/sanlock.service
|
|
|
|
%doc init.d/wdmd.service
|
2011-05-09 20:34:42 +00:00
|
|
|
|
|
|
|
%package lib
|
2015-06-19 18:09:53 +00:00
|
|
|
Summary: A shared storage lock manager library
|
2011-05-09 20:34:42 +00:00
|
|
|
Group: System Environment/Libraries
|
|
|
|
|
|
|
|
%description lib
|
|
|
|
The %{name}-lib package contains the runtime libraries for sanlock,
|
2013-07-24 19:24:47 +00:00
|
|
|
a shared storage lock manager.
|
2011-05-09 20:34:42 +00:00
|
|
|
Hosts connected to a common SAN can use this to synchronize their
|
|
|
|
access to the shared disks.
|
|
|
|
|
|
|
|
%post lib -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun lib -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files lib
|
|
|
|
%defattr(-,root,root,-)
|
2011-02-15 23:38:07 +00:00
|
|
|
%{_libdir}/libsanlock.so.*
|
2011-09-16 19:10:59 +00:00
|
|
|
%{_libdir}/libsanlock_client.so.*
|
2011-05-09 20:34:42 +00:00
|
|
|
%{_libdir}/libwdmd.so.*
|
|
|
|
|
2017-08-19 13:44:08 +00:00
|
|
|
%package -n python2-sanlock
|
|
|
|
%{?python_provide:%python_provide python2-sanlock}
|
|
|
|
# Remove before F30
|
2017-08-20 14:41:58 +00:00
|
|
|
Provides: %{name}-python = %{version}-%{release}
|
2017-08-19 13:44:08 +00:00
|
|
|
Provides: %{name}-python%{?_isa} = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-python < %{version}-%{release}
|
2011-05-09 20:34:42 +00:00
|
|
|
Summary: Python bindings for the sanlock library
|
|
|
|
Group: Development/Libraries
|
2011-09-16 19:10:59 +00:00
|
|
|
Requires: %{name}-lib = %{version}-%{release}
|
2011-05-09 20:34:42 +00:00
|
|
|
|
2017-08-19 13:44:08 +00:00
|
|
|
%description -n python2-sanlock
|
2011-05-09 20:34:42 +00:00
|
|
|
The %{name}-python package contains a module that permits applications
|
|
|
|
written in the Python programming language to use the interface
|
|
|
|
supplied by the sanlock library.
|
|
|
|
|
2017-08-19 13:44:08 +00:00
|
|
|
%files -n python2-sanlock
|
2011-05-09 20:34:42 +00:00
|
|
|
%defattr(-,root,root,-)
|
2014-08-18 18:54:40 +00:00
|
|
|
%{python_sitearch}/sanlock_python-*.egg-info
|
2011-09-16 19:10:59 +00:00
|
|
|
%{python_sitearch}/sanlock.so
|
2011-02-15 23:38:07 +00:00
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
Group: Development/Libraries
|
2011-09-16 19:10:59 +00:00
|
|
|
Requires: %{name}-lib = %{version}-%{release}
|
2011-02-15 23:38:07 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
The %{name}-devel package contains libraries and header files for
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root,-)
|
2011-05-09 20:34:42 +00:00
|
|
|
%{_libdir}/libwdmd.so
|
|
|
|
%{_includedir}/wdmd.h
|
2011-02-15 23:38:07 +00:00
|
|
|
%{_libdir}/libsanlock.so
|
2011-09-16 19:10:59 +00:00
|
|
|
%{_libdir}/libsanlock_client.so
|
2011-02-15 23:38:07 +00:00
|
|
|
%{_includedir}/sanlock.h
|
2011-05-09 20:34:42 +00:00
|
|
|
%{_includedir}/sanlock_rv.h
|
|
|
|
%{_includedir}/sanlock_admin.h
|
2011-02-15 23:38:07 +00:00
|
|
|
%{_includedir}/sanlock_resource.h
|
2011-05-09 20:34:42 +00:00
|
|
|
%{_includedir}/sanlock_direct.h
|
2015-06-19 18:09:53 +00:00
|
|
|
%{_libdir}/pkgconfig/libsanlock.pc
|
|
|
|
%{_libdir}/pkgconfig/libsanlock_client.pc
|
2011-02-15 23:38:07 +00:00
|
|
|
|
2014-08-18 18:54:40 +00:00
|
|
|
%package -n sanlk-reset
|
|
|
|
Summary: Host reset daemon and client using sanlock
|
|
|
|
Group: System Environment/Base
|
|
|
|
Requires: sanlock = %{version}-%{release}
|
|
|
|
Requires: sanlock-lib = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n sanlk-reset
|
|
|
|
The sanlk-reset package contains the reset daemon and client.
|
|
|
|
A cooperating host running the daemon can be reset by a host
|
|
|
|
running the client, so long as both maintain access to a
|
|
|
|
common sanlock lockspace.
|
|
|
|
|
|
|
|
%files -n sanlk-reset
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_sbindir}/sanlk-reset
|
|
|
|
%{_sbindir}/sanlk-resetd
|
|
|
|
%if %{with_systemd}
|
|
|
|
%{_unitdir}/sanlk-resetd.service
|
|
|
|
%endif
|
|
|
|
%dir %attr(-,root,root) %{_localstatedir}/run/sanlk-resetd
|
|
|
|
%{_mandir}/man8/sanlk-reset*
|
|
|
|
|
|
|
|
|
2016-02-22 19:22:21 +00:00
|
|
|
|
2011-02-15 23:38:07 +00:00
|
|
|
%changelog
|
2018-03-14 15:41:39 +00:00
|
|
|
* Wed Mar 14 2018 David Teigland <teigland@redhat.com> - 3.6.0-3
|
2018-03-14 15:39:34 +00:00
|
|
|
- rebuild with set_build_flags
|
|
|
|
|
2018-02-09 16:05:03 +00:00
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.6.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-12-12 18:00:38 +00:00
|
|
|
* Tue Dec 12 2017 David Teigland <teigland@redhat.com> - 3.6.0-1
|
|
|
|
- Update to sanlock-3.6.0, drop fence_sanlock
|
|
|
|
|
2017-08-20 14:42:33 +00:00
|
|
|
* Sun Aug 20 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 3.5.0-6
|
|
|
|
- Add Provides for the old name without %%_isa
|
|
|
|
|
2017-08-20 14:41:58 +00:00
|
|
|
* Sun Aug 20 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 3.5.0-5
|
|
|
|
- Add Provides for the old name without %%_isa
|
|
|
|
|
2017-08-19 13:44:08 +00:00
|
|
|
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 3.5.0-4
|
|
|
|
- Python 2 binary package renamed to python2-sanlock
|
|
|
|
See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
|
|
|
|
|
2017-08-03 08:06:15 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-27 18:07:24 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-05-01 16:44:29 +00:00
|
|
|
* Mon May 01 2017 David Teigland <teigland@redhat.com> - 3.5.0-1
|
|
|
|
- Update to sanlock-3.5.0
|
|
|
|
|
2017-02-11 13:04:04 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-07-19 12:34:39 +00:00
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.0-2
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
2016-06-10 16:48:49 +00:00
|
|
|
* Fri Jun 10 2016 David Teigland <teigland@redhat.com> - 3.4.0-1
|
|
|
|
- Update to sanlock-3.4.0
|
|
|
|
|
2016-02-23 16:09:31 +00:00
|
|
|
* Tue Feb 23 2016 David Teigland <teigland@redhat.com> - 3.3.0-2
|
|
|
|
- remove exclusive arch
|
|
|
|
|
2016-02-22 19:22:21 +00:00
|
|
|
* Mon Feb 22 2016 David Teigland <teigland@redhat.com> - 3.3.0-1
|
|
|
|
- Update to sanlock-3.3.0
|
|
|
|
|
|
|
|
* Tue Dec 01 2015 David Teigland <teigland@redhat.com> - 3.2.4-2
|
|
|
|
- wdmd: prevent probe while watchdog is used
|
|
|
|
|
2015-06-19 18:09:53 +00:00
|
|
|
* Fri Jun 19 2015 David Teigland <teigland@redhat.com> - 3.2.4-1
|
|
|
|
- Update to sanlock-3.2.4
|
|
|
|
|
2016-02-22 19:22:21 +00:00
|
|
|
* Fri May 22 2015 David Teigland <teigland@redhat.com> - 3.2.3-2
|
|
|
|
- add pkgconfig files
|
2015-06-19 00:16:16 +00:00
|
|
|
|
2016-02-22 19:22:21 +00:00
|
|
|
* Wed May 20 2015 David Teigland <teigland@redhat.com> - 3.2.3-1
|
|
|
|
- Update to sanlock-3.2.3
|
|
|
|
|
|
|
|
* Thu Oct 30 2014 David Teigland <teigland@redhat.com> - 3.2.2-2
|
|
|
|
- checksum endian fix
|
2014-09-30 18:56:34 +00:00
|
|
|
|
2016-02-22 19:22:21 +00:00
|
|
|
* Mon Sep 29 2014 David Teigland <teigland@redhat.com> - 3.2.2-1
|
|
|
|
- Update to sanlock-3.2.2
|
2014-08-28 11:38:16 +00:00
|
|
|
|
2014-08-21 18:12:10 +00:00
|
|
|
* Thu Aug 21 2014 David Teigland <teigland@redhat.com> - 3.2.1-1
|
|
|
|
- Update to sanlock-3.2.1
|
|
|
|
|
2014-08-18 18:54:40 +00:00
|
|
|
* Mon Aug 18 2014 David Teigland <teigland@redhat.com> - 3.2.0-1
|
|
|
|
- Update to sanlock-3.2.0
|
|
|
|
|
2016-02-22 19:22:21 +00:00
|
|
|
* Wed Jan 29 2014 David Teigland <teigland@redhat.com> - 3.1.0-2
|
|
|
|
- version interface
|
2014-06-08 05:44:57 +00:00
|
|
|
|
2016-02-22 19:22:21 +00:00
|
|
|
* Tue Jan 07 2014 David Teigland <teigland@redhat.com> - 3.1.0-1
|
2014-01-15 21:54:53 +00:00
|
|
|
- Update to sanlock-3.1.0
|
|
|
|
|
2016-02-22 19:22:21 +00:00
|
|
|
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 3.0.1-3
|
|
|
|
- Mass rebuild 2013-12-27
|
|
|
|
|
|
|
|
* Thu Aug 01 2013 David Teigland <teigland@redhat.com> - 3.0.1-2
|
|
|
|
- use /usr/lib instead of /lib
|
|
|
|
|
|
|
|
* Wed Jul 31 2013 David Teigland <teigland@redhat.com> - 3.0.1-1
|
|
|
|
- Update to sanlock-3.0.1
|
2013-08-04 13:25:48 +00:00
|
|
|
|
2013-07-24 19:24:47 +00:00
|
|
|
* Wed Jul 24 2013 David Teigland <teigland@redhat.com> - 3.0.0-1
|
|
|
|
- Update to sanlock-3.0.0
|
2011-02-15 23:38:07 +00:00
|
|
|
|