new upstream release
https://github.com/pbrezina/authselect/releases/tag/0.2
This commit is contained in:
parent
deabbd6c3a
commit
bf62e0cb4d
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
||||
/0.1-alpha.tar.gz
|
||||
/0.1.tar.gz
|
||||
/authselect-0.2.tar.gz
|
||||
|
||||
@ -4,13 +4,12 @@
|
||||
%global package_devel 0
|
||||
|
||||
Name: authselect
|
||||
Version: 0.1
|
||||
Release: 2%{?dist}
|
||||
Version: 0.2
|
||||
Release: 1%{?dist}
|
||||
Summary: Configures authentication and identity sources from supported profiles
|
||||
|
||||
License: GPLv3+
|
||||
URL: https://github.com/pbrezina/authselect
|
||||
Source0: https://github.com/pbrezina/authselect/archive/0.1.tar.gz
|
||||
Source0: https://github.com/pbrezina/authselect/archive/authselect-0.2.tar.gz
|
||||
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
@ -23,10 +22,10 @@ BuildRequires: asciidoc
|
||||
|
||||
|
||||
%description
|
||||
Authconfig is designed to be a replacement for authconfig but it takes
|
||||
a different approach to configure the system. Instead of letting the
|
||||
administrator build the pam stack with a tool (which may potentially end up
|
||||
with a broken configuration), it would ship several tested stacks (profiles)
|
||||
Authselect is designed to be a replacement for authconfig but it takes a different
|
||||
approach to configure the system. Instead of letting the administrator
|
||||
build the pam stack with a tool (which may potentially end up with a
|
||||
broken configuration), it would ship several tested stacks (profiles)
|
||||
that solve a use-case and are well tested and supported. At the same time,
|
||||
some obsolete features of authconfig are not supported by authselect.
|
||||
|
||||
@ -77,31 +76,36 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/libauthselect.so
|
||||
|
||||
%files libs
|
||||
%defattr(-,root,root,-)
|
||||
%attr(755,root,root) %dir %{_sysconfdir}/authselect
|
||||
%attr(755,root,root) %dir %{_datadir}/authselect
|
||||
%attr(755,root,root) %dir %{_datadir}/authselect/custom
|
||||
%attr(755,root,root) %dir %{_datadir}/authselect/vendor
|
||||
%attr(755,root,root) %dir %{_datadir}/authselect/default
|
||||
%attr(755,root,root) %dir %{_datadir}/authselect/default/sssd/
|
||||
%attr(755,root,root) %dir %{_datadir}/authselect/default/winbind/
|
||||
%{_datadir}/authselect/default/sssd/README
|
||||
%{_datadir}/authselect/default/sssd/nsswitch.conf
|
||||
%dir %{_sysconfdir}/authselect
|
||||
%dir %{_datadir}/authselect
|
||||
%dir %{_datadir}/authselect/custom
|
||||
%dir %{_datadir}/authselect/vendor
|
||||
%dir %{_datadir}/authselect/default
|
||||
%dir %{_datadir}/authselect/default/sssd/
|
||||
%dir %{_datadir}/authselect/default/winbind/
|
||||
%{_datadir}/authselect/default/sssd/dconf-db
|
||||
%{_datadir}/authselect/default/sssd/dconf-locks
|
||||
%{_datadir}/authselect/default/sssd/fingerprint-auth
|
||||
%{_datadir}/authselect/default/sssd/nsswitch.conf
|
||||
%{_datadir}/authselect/default/sssd/password-auth
|
||||
%{_datadir}/authselect/default/sssd/postlogin
|
||||
%{_datadir}/authselect/default/sssd/system-auth
|
||||
%{_datadir}/authselect/default/sssd/README
|
||||
%{_datadir}/authselect/default/sssd/smartcard-auth
|
||||
%{_datadir}/authselect/default/winbind/README
|
||||
%{_datadir}/authselect/default/sssd/system-auth
|
||||
%{_datadir}/authselect/default/winbind/dconf-db
|
||||
%{_datadir}/authselect/default/winbind/dconf-locks
|
||||
%{_datadir}/authselect/default/winbind/fingerprint-auth
|
||||
%{_datadir}/authselect/default/winbind/nsswitch.conf
|
||||
%{_datadir}/authselect/default/winbind/password-auth
|
||||
%{_datadir}/authselect/default/winbind/postlogin
|
||||
%{_datadir}/authselect/default/winbind/README
|
||||
%{_datadir}/authselect/default/winbind/system-auth
|
||||
%{_libdir}/libauthselect.so.*
|
||||
%{_mandir}/man5/authselect-profiles.5*
|
||||
%{_datadir}/doc/authselect/COPYING
|
||||
%{_datadir}/doc/authselect/README.md
|
||||
%license COPYING
|
||||
%{_mandir}/man5/authselect-profiles.5.gz
|
||||
%doc README.md
|
||||
|
||||
%if (0%{?package_devel} == 1)
|
||||
%files devel
|
||||
@ -117,18 +121,8 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/libauthselect.so
|
||||
|
||||
%post libs -p /sbin/ldconfig
|
||||
|
||||
%postun libs -p /sbin/ldconfig
|
||||
|
||||
%changelog
|
||||
* Thu Sep 14 2017 Jakub Hrozek <jakub.hrozek@posteo.se> - 0.1
|
||||
- new upstream release
|
||||
- https://github.com/pbrezina/authselect/releases/tag/0.1
|
||||
|
||||
* Mon Jul 31 2017 Jakub Hrozek <jakub.hrozek@posteo.se> - 0.1.alpha-2
|
||||
- Fixes review issues brought up in rhbz#1477134
|
||||
-- call ldconfig in postun
|
||||
-- fix description line length
|
||||
-- fix version in changelog
|
||||
|
||||
* Mon Jul 31 2017 Jakub Hrozek <jakub.hrozek@posteo.se> - 0.1.alpha-1
|
||||
* Wed Jan 10 2018 Pavel Březina <pbrezina@redhat.com> - 0.2-1
|
||||
- rebasing to 0.2
|
||||
* Mon Jul 31 2017 Jakub Hrozek <jakub.hrozek@posteo.se> - 0.1-1
|
||||
- initial packaging
|
||||
|
||||
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (0.1.tar.gz) = ea455b58c23e54b2284d14ef7310b396f5d739bb40c96031f08c99b578fddcce9a60b7458fc47f4e48abba9c28d24c5f4d627db9d49979c51a3f3a44277db7d0
|
||||
SHA512 (authselect-0.2.tar.gz) = 52b6a885123f1bf7740f029799c8a36cf9c69cdf9c5c218e92a3d85eb2417cb0568f305081449b3feb2ac2a449d822a76d22a3b7cf9a257a452397dd8164e219
|
||||
|
||||
Loading…
Reference in New Issue
Block a user