update to sanlock-2.6
This commit is contained in:
parent
aacb875dc2
commit
bceaa980e9
1
.gitignore
vendored
1
.gitignore
vendored
@ -10,3 +10,4 @@
|
|||||||
/sanlock-2.3.tar.gz
|
/sanlock-2.3.tar.gz
|
||||||
/sanlock-2.4.tar.gz
|
/sanlock-2.4.tar.gz
|
||||||
/sanlock-2.5.tar.gz
|
/sanlock-2.5.tar.gz
|
||||||
|
/sanlock-2.6.tar.gz
|
||||||
|
74
sanlock.spec
74
sanlock.spec
@ -1,5 +1,5 @@
|
|||||||
Name: sanlock
|
Name: sanlock
|
||||||
Version: 2.5
|
Version: 2.6
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A shared disk lock manager
|
Summary: A shared disk lock manager
|
||||||
|
|
||||||
@ -27,6 +27,7 @@ access to the shared disks.
|
|||||||
CFLAGS=$RPM_OPT_FLAGS make -C wdmd
|
CFLAGS=$RPM_OPT_FLAGS make -C wdmd
|
||||||
CFLAGS=$RPM_OPT_FLAGS make -C src
|
CFLAGS=$RPM_OPT_FLAGS make -C src
|
||||||
CFLAGS=$RPM_OPT_FLAGS make -C python
|
CFLAGS=$RPM_OPT_FLAGS make -C python
|
||||||
|
CFLAGS=$RPM_OPT_FLAGS make -C fence_sanlock
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
@ -39,15 +40,21 @@ make -C wdmd \
|
|||||||
make -C python \
|
make -C python \
|
||||||
install LIBDIR=%{_libdir} \
|
install LIBDIR=%{_libdir} \
|
||||||
DESTDIR=$RPM_BUILD_ROOT
|
DESTDIR=$RPM_BUILD_ROOT
|
||||||
|
make -C fence_sanlock \
|
||||||
|
install LIBDIR=%{_libdir} \
|
||||||
|
DESTDIR=$RPM_BUILD_ROOT
|
||||||
|
|
||||||
%if 0%{?fedora} >= 16
|
%if 0%{?fedora} >= 16
|
||||||
install -D -m 0755 init.d/sanlock $RPM_BUILD_ROOT/lib/systemd/systemd-sanlock
|
install -D -m 0755 init.d/sanlock $RPM_BUILD_ROOT/lib/systemd/systemd-sanlock
|
||||||
install -D -m 0644 init.d/sanlock.service $RPM_BUILD_ROOT/%{_unitdir}/sanlock.service
|
install -D -m 0644 init.d/sanlock.service $RPM_BUILD_ROOT/%{_unitdir}/sanlock.service
|
||||||
install -D -m 0755 init.d/wdmd $RPM_BUILD_ROOT/lib/systemd/systemd-wdmd
|
install -D -m 0755 init.d/wdmd $RPM_BUILD_ROOT/lib/systemd/systemd-wdmd
|
||||||
install -D -m 0644 init.d/wdmd.service $RPM_BUILD_ROOT/%{_unitdir}/wdmd.service
|
install -D -m 0644 init.d/wdmd.service $RPM_BUILD_ROOT/%{_unitdir}/wdmd.service
|
||||||
|
install -D -m 0755 init.d/fence_sanlockd $RPM_BUILD_ROOT/lib/systemd/systemd-fence_sanlockd
|
||||||
|
install -D -m 0644 init.d/fence_sanlockd.service $RPM_BUILD_ROOT/%{_unitdir}/fence_sanlockd.service
|
||||||
%else
|
%else
|
||||||
install -D -m 755 init.d/sanlock $RPM_BUILD_ROOT/%{_initddir}/sanlock
|
install -D -m 755 init.d/sanlock $RPM_BUILD_ROOT/%{_initddir}/sanlock
|
||||||
install -D -m 755 init.d/wdmd $RPM_BUILD_ROOT/%{_initddir}/wdmd
|
install -D -m 755 init.d/wdmd $RPM_BUILD_ROOT/%{_initddir}/wdmd
|
||||||
|
install -D -m 755 init.d/fence_sanlockd $RPM_BUILD_ROOT/%{_initddir}/fence_sanlockd
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
install -Dm 0644 src/logrotate.sanlock \
|
install -Dm 0644 src/logrotate.sanlock \
|
||||||
@ -56,7 +63,14 @@ install -Dm 0644 src/logrotate.sanlock \
|
|||||||
install -Dm 0644 src/sysconfig.sanlock \
|
install -Dm 0644 src/sysconfig.sanlock \
|
||||||
$RPM_BUILD_ROOT/etc/sysconfig/sanlock
|
$RPM_BUILD_ROOT/etc/sysconfig/sanlock
|
||||||
|
|
||||||
|
install -Dm 0644 wdmd/sysconfig.wdmd \
|
||||||
|
$RPM_BUILD_ROOT/etc/sysconfig/wdmd
|
||||||
|
|
||||||
|
install -dm 0755 $RPM_BUILD_ROOT/etc/wdmd.d
|
||||||
|
|
||||||
install -Dd -m 775 $RPM_BUILD_ROOT/%{_localstatedir}/run/sanlock
|
install -Dd -m 775 $RPM_BUILD_ROOT/%{_localstatedir}/run/sanlock
|
||||||
|
install -Dd -m 775 $RPM_BUILD_ROOT/%{_localstatedir}/run/fence_sanlock
|
||||||
|
install -Dd -m 775 $RPM_BUILD_ROOT/%{_localstatedir}/run/fence_sanlockd
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
@ -67,6 +81,7 @@ getent group sanlock > /dev/null || /usr/sbin/groupadd \
|
|||||||
getent passwd sanlock > /dev/null || /usr/sbin/useradd \
|
getent passwd sanlock > /dev/null || /usr/sbin/useradd \
|
||||||
-u 179 -c "sanlock" -s /sbin/nologin -r \
|
-u 179 -c "sanlock" -s /sbin/nologin -r \
|
||||||
-g 179 -d /var/run/sanlock sanlock
|
-g 179 -d /var/run/sanlock sanlock
|
||||||
|
/usr/sbin/usermod -a -G disk sanlock
|
||||||
|
|
||||||
%post
|
%post
|
||||||
if [ $1 -eq 1 ] ; then
|
if [ $1 -eq 1 ] ; then
|
||||||
@ -122,6 +137,7 @@ fi
|
|||||||
%{_mandir}/man8/sanlock*
|
%{_mandir}/man8/sanlock*
|
||||||
%config(noreplace) %{_sysconfdir}/logrotate.d/sanlock
|
%config(noreplace) %{_sysconfdir}/logrotate.d/sanlock
|
||||||
%config(noreplace) %{_sysconfdir}/sysconfig/sanlock
|
%config(noreplace) %{_sysconfdir}/sysconfig/sanlock
|
||||||
|
%config(noreplace) %{_sysconfdir}/sysconfig/wdmd
|
||||||
|
|
||||||
%package lib
|
%package lib
|
||||||
Summary: A shared disk lock manager library
|
Summary: A shared disk lock manager library
|
||||||
@ -179,7 +195,63 @@ developing applications that use %{name}.
|
|||||||
%{_includedir}/sanlock_resource.h
|
%{_includedir}/sanlock_resource.h
|
||||||
%{_includedir}/sanlock_direct.h
|
%{_includedir}/sanlock_direct.h
|
||||||
|
|
||||||
|
%package -n fence-sanlock
|
||||||
|
Summary: Fence agent using sanlock and wdmd
|
||||||
|
Group: System Environment/Base
|
||||||
|
Requires: sanlock = %{version}-%{release}
|
||||||
|
|
||||||
|
%description -n fence-sanlock
|
||||||
|
The fence-sanlock package contains the fence agent and
|
||||||
|
daemon for using sanlock and wdmd as a cluster fence agent.
|
||||||
|
|
||||||
|
%files -n fence-sanlock
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%if 0%{?fedora} >= 16
|
||||||
|
/lib/systemd/systemd-fence_sanlockd
|
||||||
|
%{_unitdir}/fence_sanlockd.service
|
||||||
|
%else
|
||||||
|
%{_initddir}/fence_sanlockd
|
||||||
|
%endif
|
||||||
|
%{_sbindir}/fence_sanlock
|
||||||
|
%{_sbindir}/fence_sanlockd
|
||||||
|
%dir /etc/wdmd.d
|
||||||
|
%dir %attr(-,root,root) %{_localstatedir}/run/fence_sanlock
|
||||||
|
%dir %attr(-,root,root) %{_localstatedir}/run/fence_sanlockd
|
||||||
|
%{_mandir}/man8/fence_sanlock*
|
||||||
|
|
||||||
|
%post -n fence-sanlock
|
||||||
|
if [ $1 -eq 1 ] ; then
|
||||||
|
%if 0%{?fedora} >= 16
|
||||||
|
/bin/systemctl daemon-reload >/dev/null 2>&1 || :
|
||||||
|
%else
|
||||||
|
/sbin/chkconfig --add fence_sanlockd
|
||||||
|
%endif
|
||||||
|
ccs_update_schema > /dev/null 2>&1 ||:
|
||||||
|
fi
|
||||||
|
|
||||||
|
%preun -n fence-sanlock
|
||||||
|
if [ $1 = 0 ]; then
|
||||||
|
%if 0%{?fedora} >= 16
|
||||||
|
/bin/systemctl --no-reload fence_sanlockd.service > /dev/null 2>&1 || :
|
||||||
|
%else
|
||||||
|
/sbin/service fence_sanlockd stop > /dev/null 2>&1
|
||||||
|
/sbin/chkconfig --del fence_sanlockd
|
||||||
|
%endif
|
||||||
|
fi
|
||||||
|
|
||||||
|
%postun -n fence-sanlock
|
||||||
|
if [ $1 -ge 1 ] ; then
|
||||||
|
%if 0%{?fedora} >= 16
|
||||||
|
/bin/systemctl try-restart fence_sanlockd.service > /dev/null 2>&1 || :
|
||||||
|
%else
|
||||||
|
/sbin/service fence_sanlockd condrestart >/dev/null 2>&1 || :
|
||||||
|
%endif
|
||||||
|
fi
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Oct 09 2012 David Teigland <teigland@redhat.com> - 2.6-1
|
||||||
|
- Update to sanlock-2.6
|
||||||
|
|
||||||
* Mon Sep 24 2012 David Teigland <teigland@redhat.com> - 2.5-1
|
* Mon Sep 24 2012 David Teigland <teigland@redhat.com> - 2.5-1
|
||||||
- Update to sanlock-2.5
|
- Update to sanlock-2.5
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user