1 |
# $Id: e-smith-radiusd.spec,v 1.8 2016/04/12 10:16:09 unnilennium Exp $ |
# $Id: e-smith-radiusd.spec,v 1.9 2019/12/19 06:00:24 jpp Exp $ |
2 |
|
|
3 |
Summary: e-smith server and gateway - configure PPTP inbound VPN |
Summary: e-smith server and gateway - configure PPTP inbound VPN |
4 |
%define name e-smith-radiusd |
%define name e-smith-radiusd |
5 |
Name: %{name} |
Name: %{name} |
6 |
%define version 2.6.0 |
%define version 2.6.0 |
7 |
%define release 9 |
%define release 10 |
8 |
Version: %{version} |
Version: %{version} |
9 |
Release: %{release}%{?dist} |
Release: %{release}%{?dist} |
10 |
License: GPL |
License: GPL |
14 |
Patch1: e-smith-radiusd-2.6.0-freeradius3bis.patch |
Patch1: e-smith-radiusd-2.6.0-freeradius3bis.patch |
15 |
Patch2: e-smith-radiusd-2.6.0-freeradius3ter.patch |
Patch2: e-smith-radiusd-2.6.0-freeradius3ter.patch |
16 |
Patch3: e-smith-radiusd-2.6.0-bz10853.patch |
Patch3: e-smith-radiusd-2.6.0-bz10853.patch |
17 |
|
Patch4: e-smith-radiusd-2.6.0-bz11113-bz11155-systemd-update.patch |
18 |
|
|
19 |
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot |
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot |
20 |
Requires: e-smith-base >= 4.13.16-27 |
Requires: e-smith-base >= 4.13.16-27 |
31 |
e-smith server and gateway - configure radius server |
e-smith server and gateway - configure radius server |
32 |
|
|
33 |
%changelog |
%changelog |
34 |
|
* Tue Dec 08 2020 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-10.sme |
35 |
|
- create -update event [SME: 11155] |
36 |
|
- move radiusd to systemd {SME: 11113] |
37 |
|
|
38 |
* Thu Dec 19 2019 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-9.sme |
* Thu Dec 19 2019 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-9.sme |
39 |
- fix server restartting with virtual_server error [SME: 10853] |
- fix server restartting with virtual_server error [SME: 10853] |
40 |
|
|
188 |
%patch1 -p1 |
%patch1 -p1 |
189 |
%patch2 -p1 |
%patch2 -p1 |
190 |
%patch3 -p1 |
%patch3 -p1 |
191 |
|
%patch4 -p1 |
192 |
|
rm -rf root/service root/var/service |
193 |
|
|
194 |
%build |
%build |
195 |
perl createlinks |
perl createlinks |
199 |
(cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT) |
(cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT) |
200 |
rm -f %{name}-%{version}-%{release}-filelist |
rm -f %{name}-%{version}-%{release}-filelist |
201 |
/sbin/e-smith/genfilelist $RPM_BUILD_ROOT \ |
/sbin/e-smith/genfilelist $RPM_BUILD_ROOT \ |
202 |
|
--file /sbin/e-smith/systemd/radiusd-configure 'attr(0554,root,root)' \ |
203 |
|
--file /sbin/e-smith/systemd/radiusd-certificate 'attr(0554,root,root)' \ |
204 |
--dir /var/service/radiusd 'attr(01755,root,root)' \ |
--dir /var/service/radiusd 'attr(01755,root,root)' \ |
205 |
--file /var/service/radiusd/down 'attr(0644,root,root)' \ |
--file /var/service/radiusd/down 'attr(0644,root,root)' \ |
206 |
--file /var/service/radiusd/run 'attr(0755,root,root)' \ |
--file /var/service/radiusd/run 'attr(0755,root,root)' \ |
221 |
|
|
222 |
%files -f %{name}-%{version}-%{release}-filelist |
%files -f %{name}-%{version}-%{release}-filelist |
223 |
%defattr(-,root,root) |
%defattr(-,root,root) |
224 |
|
|
225 |
|
%pre |
226 |
|
if [ $1 -gt 1 ] ; then |
227 |
|
if [ -e /var/service/radiusd/run ] ; then |
228 |
|
/usr/bin/sv d radiusd |
229 |
|
/usr/bin/sv d radiusd/log |
230 |
|
fi |
231 |
|
if [ -e /var/service/radiusd ] ; then |
232 |
|
rm -rf /var/service/radiusd |
233 |
|
fi |
234 |
|
|
235 |
|
fi |
236 |
|
|