1 |
# $Id: e-smith-cvm-unix-local.spec,v 1.1 2013/02/07 22:48:09 slords Exp $ |
# $Id: e-smith-cvm-unix-local.spec,v 1.3 2021/01/09 04:55:33 jpp Exp $ |
2 |
|
|
3 |
Summary: Module for supervising cvm auth daemon |
Summary: Module for supervising cvm auth daemon |
4 |
%define name e-smith-cvm-unix-local |
%define name e-smith-cvm-unix-local |
5 |
Name: %{name} |
Name: %{name} |
6 |
%define version 2.4.0 |
%define version 2.6.0 |
7 |
%define release 1 |
%define release 3 |
8 |
Version: %{version} |
Version: %{version} |
9 |
Release: %{release}%{?dist} |
Release: %{release}%{?dist} |
10 |
License: GPL |
License: GPL |
11 |
Group: Networking/Daemons |
Group: Networking/Daemons |
12 |
Source: %{name}-%{version}.tar.xz |
Source: %{name}-%{version}.tar.xz |
13 |
|
Patch: e-smith-cvm-unix-local-2.6.0-bz11314-bz11125-systemd-update.patch |
14 |
|
|
15 |
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot |
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot |
16 |
Requires: cvm daemontools |
Requires: cvm daemontools |
17 |
Requires: e-smith-lib >= 1.13.1-90 |
Requires: e-smith-lib >= 1.13.1-90 |
23 |
Module for supervising cvm auth daemon |
Module for supervising cvm auth daemon |
24 |
|
|
25 |
%changelog |
%changelog |
26 |
|
* Mon Jan 11 2021 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-3.sme |
27 |
|
- fix typo [SME: 11314] |
28 |
|
|
29 |
|
* Fri Jan 08 2021 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-2.sme |
30 |
|
- migrate to systemd [SME: 11314] |
31 |
|
- add update event [SME: 11125] |
32 |
|
|
33 |
|
* Fri Feb 5 2016 Daniel Berteaud <daniel@firewall-services.com> 2.6.0-1.sme |
34 |
|
- Roll new stream for sme10 |
35 |
|
|
36 |
* Thu Feb 7 2013 Shad L. Lords <slords@mail.com> 2.4.0-1.sme |
* Thu Feb 7 2013 Shad L. Lords <slords@mail.com> 2.4.0-1.sme |
37 |
- Roll new stream for sme9 |
- Roll new stream for sme9 |
38 |
|
|
92 |
|
|
93 |
%prep |
%prep |
94 |
%setup |
%setup |
95 |
|
%patch -p1 |
96 |
|
rm -rf root/var/service |
97 |
|
|
98 |
%build |
%build |
99 |
|
perl createlinks |
100 |
|
|
101 |
%install |
%install |
102 |
rm -rf $RPM_BUILD_ROOT |
rm -rf $RPM_BUILD_ROOT |
103 |
(cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT) |
(cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT) |
|
mkdir -p $RPM_BUILD_ROOT/service |
|
104 |
mkdir -p $RPM_BUILD_ROOT/var/lib/cvm |
mkdir -p $RPM_BUILD_ROOT/var/lib/cvm |
|
ln -s /var/service/cvm-unix-local $RPM_BUILD_ROOT/service/cvm-unix-local |
|
105 |
mkdir -p $RPM_BUILD_ROOT/var/log/cvm |
mkdir -p $RPM_BUILD_ROOT/var/log/cvm |
106 |
|
mkdir -p $RPM_BUILD_ROOT/usr/lib/systemd/system/sme-server.target.wants |
107 |
|
/sbin/e-smith/genfilelist $RPM_BUILD_ROOT \ |
108 |
|
--dir /var/lib/cvm 'attr(0755,root,root)' \ |
109 |
|
--dir /var/log/cvm 'attr(0750,cvmlog,cvmlog)' \ |
110 |
|
> %{name}-%{version}-%{release}-filelist |
111 |
|
|
112 |
|
|
113 |
%pre |
%pre |
114 |
/sbin/e-smith/create-system-user cvmlog 1003 'cvm output log user' /var/log/imap /bin/false |
/sbin/e-smith/create-system-user cvmlog 1003 'cvm output log user' /var/log/imap /bin/false |
115 |
|
if [ $1 -gt 1 ] ; then |
116 |
|
if [ -e /var/service/cvm-unix-local/run ] ; then |
117 |
|
/usr/bin/sv d cvm-unix-local |
118 |
|
/usr/bin/sv d cvm-unix-local/log |
119 |
|
fi |
120 |
|
fi |
121 |
|
|
122 |
%preun |
%preun |
123 |
|
|
124 |
%clean |
%clean |
125 |
rm -rf $RPM_BUILD_ROOT |
rm -rf $RPM_BUILD_ROOT |
126 |
|
|
127 |
%files |
%files -f %{name}-%{version}-%{release}-filelist |
128 |
%defattr(-,root,root) |
%defattr(-,root,root) |
129 |
%dir %attr(1755,root,root)/var/service/cvm-unix-local |
|
130 |
%attr(0755,root,root)/var/service/cvm-unix-local/run |
|
|
%attr(0755,root,root)/var/lib/cvm |
|
|
%dir %attr(0755,root,root)/var/service/cvm-unix-local/log |
|
|
%attr(0755,root,root)/var/service/cvm-unix-local/log/run |
|
|
%dir %attr(0750,cvmlog,cvmlog)/var/log/cvm |
|
|
/service/cvm-unix-local |
|