135 lines
3.8 KiB
RPMSpec
135 lines
3.8 KiB
RPMSpec
#
|
|
# spec file for package sbd
|
|
#
|
|
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
# Copyright (c) 2013 Lars Marowsky-Bree
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
%global commit 7f33d1a409d0a4e2cd69946688c48eaa8f3c5d26
|
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
|
%global github_owner Clusterlabs
|
|
%global buildnum 17
|
|
|
|
Name: sbd
|
|
Summary: Storage-based death
|
|
License: GPLv2 and MIT
|
|
Group: System Environment/Daemons
|
|
Version: 1.4.0
|
|
Release: %{buildnum}
|
|
Url: https://github.com/%{github_owner}/%{name}
|
|
Source0: https://github.com/%{github_owner}/%{name}/archive/%{commit}/%{name}-%{commit}_all.tar.gz
|
|
Patch0: 0001-Fix-the-problem-of-service-error-when-uninstalling.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: autoconf
|
|
BuildRequires: automake
|
|
BuildRequires: libuuid-devel
|
|
BuildRequires: glib2-devel
|
|
BuildRequires: libaio-devel
|
|
BuildRequires: corosynclib-devel
|
|
BuildRequires: pacemaker-libs-devel > 1.1.12
|
|
BuildRequires: libtool
|
|
BuildRequires: libuuid-devel
|
|
BuildRequires: libxml2-devel
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: systemd
|
|
|
|
ExclusiveArch: x86_64 aarch64
|
|
|
|
%if %{defined systemd_requires}
|
|
%systemd_requires
|
|
%endif
|
|
|
|
%description
|
|
|
|
This package contains the storage-based death functionality.
|
|
|
|
###########################################################
|
|
|
|
%prep
|
|
%autosetup -p1 -n %{name}-%{commit}
|
|
|
|
###########################################################
|
|
|
|
%build
|
|
autoreconf -i
|
|
export CFLAGS="$RPM_OPT_FLAGS -Wall "
|
|
%configure
|
|
make %{?_smp_mflags}
|
|
|
|
###########################################################
|
|
|
|
%install
|
|
|
|
make DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} install
|
|
rm -rf ${RPM_BUILD_ROOT}%{_libdir}/stonith
|
|
|
|
%if %{defined _unitdir}
|
|
install -D -m 0644 src/sbd.service $RPM_BUILD_ROOT/%{_unitdir}/sbd.service
|
|
install -D -m 0644 src/sbd_remote.service $RPM_BUILD_ROOT/%{_unitdir}/sbd_remote.service
|
|
%endif
|
|
|
|
mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir}/sysconfig
|
|
install -m 644 src/sbd.sysconfig ${RPM_BUILD_ROOT}%{_sysconfdir}/sysconfig/sbd
|
|
|
|
###########################################################
|
|
|
|
%clean
|
|
rm -rf %{buildroot}
|
|
|
|
%if %{defined _unitdir}
|
|
%post
|
|
%systemd_post sbd.service
|
|
%systemd_post sbd_remote.service
|
|
if [ $1 -ne 1 ] ; then
|
|
if systemctl --quiet is-enabled sbd.service 2>/dev/null
|
|
then
|
|
systemctl --quiet reenable sbd.service 2>/dev/null || :
|
|
fi
|
|
if systemctl --quiet is-enabled sbd_remote.service 2>/dev/null
|
|
then
|
|
systemctl --quiet reenable sbd_remote.service 2>/dev/null || :
|
|
fi
|
|
fi
|
|
|
|
%preun
|
|
%systemd_preun sbd.service
|
|
%systemd_preun sbd_remote.service
|
|
|
|
%postun
|
|
%systemd_postun sbd.service
|
|
%systemd_postun sbd_remote.service
|
|
%endif
|
|
|
|
%files
|
|
###########################################################
|
|
%defattr(-,root,root)
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/sbd
|
|
%{_sbindir}/sbd
|
|
#%{_datadir}/sbd
|
|
%doc %{_mandir}/man8/sbd*
|
|
%if %{defined _unitdir}
|
|
%{_unitdir}/sbd.service
|
|
%{_unitdir}/sbd_remote.service
|
|
%endif
|
|
%doc COPYING
|
|
|
|
%changelog
|
|
* Mon Mar 28 2022 jiangxinyu <jiangxinyu@kylinos.cn> - 1.4.0-17
|
|
- Fix the problem of service error when uninstalling
|
|
|
|
* Thur Dec 16 2021 liqiuyu <liqiuyu@kylinos.cn> - 1.4.0-16
|
|
- Remove the release suffix
|
|
|
|
* Fri Oct 30 2020 jiangxinyu <jiangxinyu@kylinos.cn> - 1.4.0-15
|
|
- Init sbd project
|