forked from pool/freeradius-server
Accepting request 1058211 from home:schubi2:pam_usr_etc
- Migration of PAM settings to /usr/lib/pam.d. OBS-URL: https://build.opensuse.org/request/show/1058211 OBS-URL: https://build.opensuse.org/package/show/network/freeradius-server?expand=0&rev=157
This commit is contained in:
parent
c89fc9c212
commit
65294a38e7
@ -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>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# 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
|
||||
# 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/radius.log
|
||||
# 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}/logrotate.d
|
||||
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
|
||||
mkdir -p %{buildroot}%{_tmpfilesdir}
|
||||
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
|
||||
|
||||
%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
|
||||
%service_add_post %{unitname}.service
|
||||
@ -335,6 +346,14 @@ systemd-tmpfiles --create %{_tmpfilesdir}/%{unitname}.conf
|
||||
%postun
|
||||
%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
|
||||
%defattr(-,root,root)
|
||||
%doc doc/*
|
||||
@ -346,7 +365,11 @@ systemd-tmpfiles --create %{_tmpfilesdir}/%{unitname}.conf
|
||||
%doc CREDITS doc/ChangeLog
|
||||
%license LICENSE COPYRIGHT
|
||||
# SUSE
|
||||
%if 0%{?suse_version} > 1500
|
||||
%{_pam_vendordir}/radiusd
|
||||
%else
|
||||
%config %{_sysconfdir}/pam.d/radiusd
|
||||
%endif
|
||||
%config %{_sysconfdir}/logrotate.d/radiusd
|
||||
%{_sbindir}/rcradiusd
|
||||
%dir %attr(755,radiusd,radiusd) %{_localstatedir}/lib/radiusd
|
||||
|
Loading…
Reference in New Issue
Block a user