Accepting request 1058729 from network
OBS-URL: https://build.opensuse.org/request/show/1058729 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/freeradius-server?expand=0&rev=92
This commit is contained in:
commit
100684a70d
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 13 11:06:06 UTC 2023 - Stefan Schubert <schubi@suse.com>
|
||||||
|
|
||||||
|
- Migration of PAM settings to /usr/lib/pam.d.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Sep 29 08:57:18 UTC 2022 - Michael Ströder <michael@stroeder.com>
|
Thu Sep 29 08:57:18 UTC 2022 - Michael Ströder <michael@stroeder.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package freeradius-server
|
# spec file for package freeradius-server
|
||||||
#
|
#
|
||||||
# Copyright (c) 2022 SUSE LLC
|
# Copyright (c) 2023 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -270,9 +270,14 @@ perl -i -pe 's/^#group =.*$/group = radiusd/' $RADDB/radiusd.conf
|
|||||||
touch %{buildroot}%{_localstatedir}/log/radius/radutmp
|
touch %{buildroot}%{_localstatedir}/log/radius/radutmp
|
||||||
touch %{buildroot}%{_localstatedir}/log/radius/radius.log
|
touch %{buildroot}%{_localstatedir}/log/radius/radius.log
|
||||||
# SUSE
|
# SUSE
|
||||||
|
%if 0%{?suse_version} > 1500
|
||||||
|
install -d %{buildroot}%{_pam_vendordir}
|
||||||
|
install -m 644 suse/radiusd-pam %{buildroot}%{_pam_vendordir}/radiusd
|
||||||
|
%else
|
||||||
install -d %{buildroot}%{_sysconfdir}/pam.d
|
install -d %{buildroot}%{_sysconfdir}/pam.d
|
||||||
install -d %{buildroot}%{_sysconfdir}/logrotate.d
|
|
||||||
install -m 644 suse/radiusd-pam %{buildroot}%{_sysconfdir}/pam.d/radiusd
|
install -m 644 suse/radiusd-pam %{buildroot}%{_sysconfdir}/pam.d/radiusd
|
||||||
|
%endif
|
||||||
|
install -d %{buildroot}%{_sysconfdir}/logrotate.d
|
||||||
install -m 644 suse/radiusd-logrotate %{buildroot}%{_sysconfdir}/logrotate.d/radiusd
|
install -m 644 suse/radiusd-logrotate %{buildroot}%{_sysconfdir}/logrotate.d/radiusd
|
||||||
mkdir -p %{buildroot}%{_tmpfilesdir}
|
mkdir -p %{buildroot}%{_tmpfilesdir}
|
||||||
install -m 0644 %{SOURCE2} %{buildroot}%{_tmpfilesdir}/%{unitname}.conf
|
install -m 0644 %{SOURCE2} %{buildroot}%{_tmpfilesdir}/%{unitname}.conf
|
||||||
@ -324,6 +329,12 @@ getent passwd radiusd >/dev/null || %{_sbindir}/useradd -r -g radiusd \
|
|||||||
%{_bindir}/gpasswd -a radiusd winbind
|
%{_bindir}/gpasswd -a radiusd winbind
|
||||||
|
|
||||||
%service_add_pre %{unitname}.service
|
%service_add_pre %{unitname}.service
|
||||||
|
%if 0%{?suse_version} > 1500
|
||||||
|
# Prepare for migration to /usr/lib; save any old .rpmsave
|
||||||
|
for i in pam.d/radiusd ; do
|
||||||
|
test -f %{_sysconfdir}/${i}.rpmsave && mv -v %{_sysconfdir}/${i}.rpmsave %{_sysconfdir}/${i}.rpmsave.old ||:
|
||||||
|
done
|
||||||
|
%endif
|
||||||
|
|
||||||
%post
|
%post
|
||||||
%service_add_post %{unitname}.service
|
%service_add_post %{unitname}.service
|
||||||
@ -335,6 +346,14 @@ systemd-tmpfiles --create %{_tmpfilesdir}/%{unitname}.conf
|
|||||||
%postun
|
%postun
|
||||||
%service_del_postun %{unitname}.service
|
%service_del_postun %{unitname}.service
|
||||||
|
|
||||||
|
%if 0%{?suse_version} > 1500
|
||||||
|
%posttrans
|
||||||
|
# Migration to /usr/lib, restore just created .rpmsave
|
||||||
|
for i in pam.d/radiusd ; do
|
||||||
|
test -f %{_sysconfdir}/${i}.rpmsave && mv -v %{_sysconfdir}/${i}.rpmsave %{_sysconfdir}/${i} ||:
|
||||||
|
done
|
||||||
|
%endif
|
||||||
|
|
||||||
%files doc
|
%files doc
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc doc/*
|
%doc doc/*
|
||||||
@ -346,7 +365,11 @@ systemd-tmpfiles --create %{_tmpfilesdir}/%{unitname}.conf
|
|||||||
%doc CREDITS doc/ChangeLog
|
%doc CREDITS doc/ChangeLog
|
||||||
%license LICENSE COPYRIGHT
|
%license LICENSE COPYRIGHT
|
||||||
# SUSE
|
# SUSE
|
||||||
|
%if 0%{?suse_version} > 1500
|
||||||
|
%{_pam_vendordir}/radiusd
|
||||||
|
%else
|
||||||
%config %{_sysconfdir}/pam.d/radiusd
|
%config %{_sysconfdir}/pam.d/radiusd
|
||||||
|
%endif
|
||||||
%config %{_sysconfdir}/logrotate.d/radiusd
|
%config %{_sysconfdir}/logrotate.d/radiusd
|
||||||
%{_sbindir}/rcradiusd
|
%{_sbindir}/rcradiusd
|
||||||
%dir %attr(755,radiusd,radiusd) %{_localstatedir}/lib/radiusd
|
%dir %attr(755,radiusd,radiusd) %{_localstatedir}/lib/radiusd
|
||||||
|
Loading…
Reference in New Issue
Block a user