--- rpms/e-smith-radiusd/sme10/e-smith-radiusd.spec 2016/04/10 07:30:52 1.7 +++ rpms/e-smith-radiusd/sme10/e-smith-radiusd.spec 2020/12/09 02:33:21 1.10 @@ -1,10 +1,10 @@ -# $Id: e-smith-radiusd.spec,v 1.6 2016/04/07 07:16:22 unnilennium Exp $ +# $Id: e-smith-radiusd.spec,v 1.9 2019/12/19 06:00:24 jpp Exp $ Summary: e-smith server and gateway - configure PPTP inbound VPN %define name e-smith-radiusd Name: %{name} %define version 2.6.0 -%define release 7 +%define release 10 Version: %{version} Release: %{release}%{?dist} License: GPL @@ -13,6 +13,9 @@ Source: %{name}-%{version}.tar.xz Patch0: e-smith-radiusd-2.6.0-freeradius3.patch Patch1: e-smith-radiusd-2.6.0-freeradius3bis.patch Patch2: e-smith-radiusd-2.6.0-freeradius3ter.patch +Patch3: e-smith-radiusd-2.6.0-bz10853.patch +Patch4: e-smith-radiusd-2.6.0-bz11113-bz11155-systemd-update.patch + BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot Requires: e-smith-base >= 4.13.16-27 Requires: e-smith-lib >= 1.15.1-16 @@ -28,11 +31,21 @@ BuildArchitectures: noarch e-smith server and gateway - configure radius server %changelog +* Tue Dec 08 2020 Jean-Philipe Pialasse 2.6.0-10.sme +- create -update event [SME: 11155] +- move radiusd to systemd {SME: 11113] + +* Thu Dec 19 2019 Jean-Philipe Pialasse 2.6.0-9.sme +- fix server restartting with virtual_server error [SME: 10853] + +* Tue Apr 12 2016 Jean-Philipe Pialasse 2.6.0-8.sme +- escaped {} characters in ldap template [SME: 9434] + * Sun Apr 10 2016 Jean-Philipe Pialasse 2.6.0-7.sme -- fix typo [SME: 9425] +- fix typo [SME: 9434] * Wed Apr 06 2016 Jean-Philipe Pialasse 2.6.0-6.sme -- more adjustements regarding [SME: 9425] +- more adjustements regarding [SME: 9434] - e-smith-radiusd-2.6.0-freeradius3bis.patch - e-smith-radiusd-2.6.0-freeradius3ter.patch @@ -174,6 +187,9 @@ e-smith server and gateway - configure r %patch0 -p1 %patch1 -p1 %patch2 -p1 +%patch3 -p1 +%patch4 -p1 +rm -rf root/service root/var/service %build perl createlinks @@ -183,6 +199,8 @@ rm -rf $RPM_BUILD_ROOT (cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT) rm -f %{name}-%{version}-%{release}-filelist /sbin/e-smith/genfilelist $RPM_BUILD_ROOT \ + --file /sbin/e-smith/systemd/radiusd-configure 'attr(0554,root,root)' \ + --file /sbin/e-smith/systemd/radiusd-certificate 'attr(0554,root,root)' \ --dir /var/service/radiusd 'attr(01755,root,root)' \ --file /var/service/radiusd/down 'attr(0644,root,root)' \ --file /var/service/radiusd/run 'attr(0755,root,root)' \ @@ -203,3 +221,16 @@ rm -rf $RPM_BUILD_ROOT %files -f %{name}-%{version}-%{release}-filelist %defattr(-,root,root) + +%pre +if [ $1 -gt 1 ] ; then + if [ -e /var/service/radiusd/run ] ; then + /usr/bin/sv d radiusd + /usr/bin/sv d radiusd/log + fi + if [ -e /var/service/radiusd ] ; then + rm -rf /var/service/radiusd + fi + +fi +