source: projects/specs/trunk/a/authconfig/authconfig-vl.spec @ 12000

Revision 12000, 26.6 KB checked in by tomop, 5 years ago (diff)

new: elogind-239.3 (and packages that depends on elogind)

Line 
1Summary: Command line tool for setting up authentication from network services
2Summary(ja): ネットワークサービスからの認証を設定するためのコマンドラインツール
3Name: authconfig
4Version: 7.0.1
5Release: 1%{?_dist_release}
6License: GPLv2+
7ExclusiveOS: Linux
8Group: System Environment/Base
9BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
10URL: https://pagure.io/authconfig
11Vendor: Project Vine
12Distribution: Vine Linux
13
14Source: https://releases.pagure.org/%{name}/%{name}-%{version}.tar.bz2
15
16# fedora patches
17Patch1: authconfig-6.2.6-gdm-nolastlog.patch
18Patch2: authconfig-7.0.1-nss-update.patch
19
20# remove selinux staff
21Patch100: authconfig-7.0.1-noselinux.patch
22
23# elogind patch
24Patch1000: authconfig-7.0.1-elogind.patch
25
26# stop warning flood by tempfile in python3.5
27Patch1001: authconfig-7.0.1-fix-temp-warning.patch
28
29Conflicts: samba-common < 3.0, samba-client < 3.0
30Conflicts: nss_ldap < 254
31Obsoletes: authconfig-gtk < 7.0.0
32BuildRequires: glib2-devel
33BuildRequires: python3-devel
34BuildRequires: intltool, gettext
35Requires: pam
36Requires: openssl
37
38%description
39Authconfig is a command line utility which can configure a workstation
40to use shadow (more secure) passwords.  Authconfig can also configure a
41system to be a client for certain networked user information and
42authentication schemes.
43
44%description -l ja
45authconfig はシャドウ(よりセキュリティーが高い)パスワードの設定をおこなう
46コマンドラインプログラムです。また、ネットワークを介したユーザ情報と認証
47サービスを利用するように設定することもできます。
48
49%prep
50%setup -q -n %{name}-%{version}
51%patch1 -p1
52%patch2 -p1
53%patch1000 -p1
54%patch1001 -p1
55
56%patch100 -p1
57
58perl -pi -e 's|/usr/lib|/lib|' authinfo.py
59
60%build
61CFLAGS="$RPM_OPT_FLAGS -fPIC"; export CFLAGS
62%configure --with-python-rev=3
63make
64
65%install
66rm -rf $RPM_BUILD_ROOT
67make install DESTDIR=$RPM_BUILD_ROOT
68rm $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/acutil.a
69rm $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/acutil.la
70
71%find_lang %{name}
72find $RPM_BUILD_ROOT%{_datadir} -name "*.mo" | xargs ./utf8ify-mo
73
74%clean
75rm -rf $RPM_BUILD_ROOT
76
77%post
78authconfig --updateall --nostart &>/dev/null ||:
79
80%triggerin -- authconfig <= 6.2.3
81if [ ! -e %{_sysconfdir}/pam.d/postlogin-ac ]; then
82        authconfig --updateall --nostart >/dev/null 2>&1 || :
83fi
84if [ ! -e %{_sysconfdir}/pam.d/postlogin ]; then
85        cd %{_sysconfdir}/pam.d; \
86        ln -s postlogin-ac postlogin > /dev/null 2>&1 || :
87fi
88
89
90%files -f %{name}.lang
91%defattr(-,root,root,-)
92%license COPYING
93%doc NOTES TODO HOWTO.AD-client
94%ghost %config(noreplace) %{_sysconfdir}/sysconfig/authconfig
95%ghost %config(noreplace) %{_sysconfdir}/pam.d/system-auth-ac
96%ghost %config(noreplace) %{_sysconfdir}/pam.d/password-auth-ac
97%ghost %config(noreplace) %{_sysconfdir}/pam.d/fingerprint-auth-ac
98%ghost %config(noreplace) %{_sysconfdir}/pam.d/smartcard-auth-ac
99%ghost %config(noreplace) %{_sysconfdir}/pam.d/postlogin-ac
100%{_sbindir}/cacertdir_rehash
101%{_sbindir}/authconfig
102%{_mandir}/man8/*
103%{_mandir}/man5/*
104%{_libdir}/python*/site-packages/acutil.so
105%dir %{_datadir}/%{name}
106%{_datadir}/%{name}/authconfig.py*
107%{_datadir}/%{name}/authinfo.py*
108%{_datadir}/%{name}/shvfile.py*
109%{_datadir}/%{name}/dnsclient.py*
110%attr(700,root,root) %dir %{_localstatedir}/lib/%{name}
111
112%changelog
113* Sun Dec 16 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.0.1-1
114- new upstream release.
115- switched to python3.
116- updated Patch100.
117- added elogind support.
118- dropped Patch10 and 11.
119- dropped a subpackage "gtk": no longer supported in the upstream.
120
121* Tue Jun 17 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 6.2.8-2
122- add Patch100 to remove selinux staff (again)
123
124* Sun Mar 30 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 6.2.8-1
125- update to 6.2.8
126- remove Patch101 (authconfig-6.2.3-authinfo-vine.patch)
127
128* Sat Oct 13 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 6.2.4-1
129- update to 6.2.4
130- run "authconfig --updateall --nostart" on %%post script
131
132* Tue Sep 04 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 6.2.3-1
133- update to 6.2.3
134- update Patch10 (authconfig-6.2.3-fprintd-pam.patch)
135- update Patch11 (authconfig-6.2.3-fix-broken-strings.patch)
136- add Patch101 (authconfig-6.2.3-authinfo-vine.patch)
137
138* Sun Feb 19 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 5.4.10-6
139- rebuild with python-2.7.2
140
141* Sun Apr 17 2011 Shu KONNO <owa@bg.wakwak.com> 5.4.10-5
142- rebuilt with rpm-4.8.1-3
143
144* Wed Feb 03 2010 Shu KONNO <owa@bg.wakwak.com> 5.4.10-4
145- rebuilt with python-2.6.4
146
147* Sun Aug 23 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 5.4.10-3
148- update Patch11
149  - old patch does not fix problem on some environment..
150
151* Fri Aug 14 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 5.4.10-2
152- add Patch10
153  - Fingerprint auth requires fprintd-pam package not pam_fprintd
154- add Patch11 to fix broken help messages on some locale.
155
156* Wed May 13 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 5.4.10-1
157- new upstream release
158
159* Sun Aug 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 5.4.4-1
160- new upstream release
161- historical changelogs are following:
162  * Tue Apr 05 2005 Shu KONNO <owa@bg.wakwak.com> 4.6.1-1vl4
163  - added authconfig-4.6.1-authinfo.patch, by HOTTA Michihide <hotta@net-newbie.com>
164  - added BuildRequires: desktop-file-utils
165  * Sun Apr 03 2005 Shu KONNO <owa@bg.wakwak.com> 4.6.1-1vl3
166  - rebuilt with python-2.4.1-0vl1
167  * Sat Apr 17 2004 Shu KONNO <owa@bg.wakwak.com> 4.6.1-1vl2
168  - rebuilt with python-2.3.3-0vl1
169  * Mon Apr 12 2004 Shu KONNO <owa@bg.wakwak.com> 4.6.1-1vl1.1
170  - rebuilt with python-2.3.3-0vl0.3 (for TestPkg)
171  * Sun Feb 22 2004 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.6.1-1vl1
172  - updated to 4.6.1
173  - updated Patch0 and Source1
174  - rebuild with new toolchains
175  - Reqyires: glib2, BuildRequires: glib2-devel
176  * Sat Jul 06 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 4.1.19-1vl2
177  - add vinized color palette
178  * Thu Jul 04 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 4.1.19-1vl1
179  - rebuild for Vine Linux
180  - based on Red Hat Linux 7.2, merged with Vine Linux package.
181    * Thu Jun 28 2001 MATUBARA Kazuyuki <matubara@mb.asmnet.ne.jp>
182    - 3.0.3-1vl5
183    - change checkbox color
184    * Tue Dec 26 2000 Tomoya TAKA <tomoya@olive.plala.or.jp> 3.0.3-1vl4
185    - add %patch1 to fix mandir
186    * Sun Nov 19 2000 Satoshi MACHINO <machino@vinelinux.org> 3.0.3-1vl3
187    - build with gcc-2.95.3
188    - partially used rpmmacros
189    * Thu Jul 13 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
190    - 3.0.3-1vl2
191    - modified %files section to handle compressed man page
192    * Thu May 11 2000 Jun Nishii <jun@vinelinux.org>
193    - 3.0.3-1vl1
194    - build for Vine
195
196* Tue Aug  5 2008 Tomas Mraz <tmraz@redhat.com> - 5.4.4-1
197- do not call domainname when run with --nostart (#457697)
198
199* Fri Jun  6 2008 Tomas Mraz <tmraz@redhat.com> - 5.4.3-1
200- remove the --enableldapssl alias and add some help to GUI tooltips
201  to clear up some confusion (#220973)
202- add option --enablepreferdns to prefer DNS over NIS or WINS in
203  hostname resolution
204
205* Tue Apr  8 2008 Tomas Mraz <tmraz@redhat.com> - 5.4.2-1
206- read wins setting from nsswitch.conf correctly (#440459)
207- do not ignore --enablemd5/--disablemd5 options
208
209* Tue Mar 11 2008 Tomas Mraz <tmraz@redhat.com> - 5.4.1-1
210- fixed backup directory in Makefile and spec (#437040)
211
212* Mon Mar 10 2008 Tomas Mraz <tmraz@redhat.com> - 5.4.0-1
213- include config-util in console.apps files
214- add support for saving/restoring backups of configuration
215  files affected by authconfig (#433776)
216- improve the authconfig manual page (#432023, #432938)
217
218* Tue Jan 29 2008 Tomas Mraz <tmraz@redhat.com> - 5.3.21-1
219- correct the fix for bug #237956
220
221* Fri Jan 18 2008 Tomas Mraz <tmraz@redhat.com> - 5.3.20-1
222- update translations
223
224* Wed Jan  9 2008 Tomas Mraz <tmraz@redhat.com> - 5.3.19-1
225- support new sha256 and sha512 password hash algorithms
226- add support for pam_mkhomedir (#212790)
227- do not crash in authconfig --help (#237956) - thanks to Andy Shevchenko for
228  the idea how to fix that
229- setup password hash algorithm in /etc/login.defs (#218652)
230- update translations
231
232* Tue Sep 25 2007 Tomas Mraz <tmraz@redhat.com> - 5.3.18-1
233- improve krb5.conf handling (#238766)
234
235* Fri Aug 24 2007 Tomas Mraz <tmraz@redhat.com> - 5.3.17-1
236- remove obsolete pam_krb5afs support (#250704)
237- add support for pam_access (#251360)
238- update translations
239
240* Tue Aug 21 2007 Tomas Mraz <tmraz@redhat.com> - 5.3.16-3
241- license tag fix
242
243* Thu Aug  9 2007 Tomas Mraz <tmraz@redhat.com> - 5.3.16-2
244- require newt-python (#251359)
245
246* Wed Jul 25 2007 Tomas Mraz <tmraz@redhat.com> - 5.3.16-1
247- add support for winbind offline login (#232955)
248
249* Wed Jul 18 2007 Tomas Mraz <tmraz@redhat.com> - 5.3.15-1
250- dnsclient fixes by Simo Sorce
251- add Categories to .desktop file (#245868)
252- fixed traceback when calling joinDomain (#245374)
253- disable smart card action setting when gnome-screensaver
254  not installed (#209643)
255- do not change protocols and services in nsswitch.conf (#236669)
256
257* Tue Jun 12 2007 Tomas Mraz <tmraz@redhat.com> - 5.3.14-1
258- authconfig.8 synopsis fixed (patch by Eric Raymond) (#220574)
259- drop explicit requirement on python version as it is now
260  generated automatically
261- improve writing /etc/samba/smb.conf (based on patch by
262  Simo Sorce)
263- merge changes upstream
264 
265* Fri May  4 2007 Tomas Mraz <tmraz@redhat.com> - 5.3.13-4
266- local nis domain is obtained from sysconfig/network (#235927)
267- set "local authorization is sufficient" on by default
268
269* Thu Apr  5 2007 Tomas Mraz <tmraz@redhat.com> - 5.3.13-3
270- minor changes and cleanups for merge review (#225293)
271
272* Mon Mar 19 2007 Tomas Mraz <tmraz@redhat.com> - 5.3.13-2
273- nss_ldap is now in /usr/lib (#232975)
274
275* Tue Dec 12 2006 Tomas Mraz <tmraz@redhat.com> - 5.3.13-1
276- another traceback in --probe and other fixes (#218874)
277- make smbRealm a default realm when appropriate (#219300)
278- added missing languages in LINGUAS
279
280* Wed Nov 29 2006 Tomas Mraz <tmraz@redhat.com> - 5.3.12-1
281- when pam_krb5 auth fails with smartcard login don't enforce it
282  in the account stack (#214931)
283- updated translations (#216570)
284- winbind should be added only to user tables (#216862)
285
286* Fri Oct 20 2006 Tomas Mraz <tmraz@redhat.com> - 5.3.11-1
287- fixed --smartcardaction command line option (#211552)
288
289* Fri Oct  6 2006 Tomas Mraz <tmraz@redhat.com> - 5.3.10-1
290- fixed passwd PAM stack when PKCS11 enabled (#195960)
291- make authconfig --probe work again (#209676)
292
293* Mon Oct  2 2006 Tomas Mraz <tmraz@redhat.com> - 5.3.9-1
294- updated translations (#207095)
295- correctly write pam_smb.conf with only one server specified (#208365)
296
297* Thu Sep 21 2006 Tomas Mraz <tmraz@redhat.com> - 5.3.8-1
298- move options to another tab to fit on 800x600 screen (#207357)
299
300* Tue Sep 19 2006 Tomas Mraz <tmraz@redhat.com> - 5.3.7-1
301- improve PAM setup for smart card login
302- support smart card login with kerberos (PKINIT)
303- add pam_pkcs11 to password PAM stack
304
305* Mon Sep  4 2006 Tomas Mraz <tmraz@redhat.com> - 5.3.6-1
306- skip pam_unix for session for crond service
307- fixed a bug in saving when smartcard settings changed (#204838)
308- removed allow_ypbind setsebool as it is now handled in ypbind
309
310* Tue Aug 29 2006 Tomas Mraz <tmraz@redhat.com> - 5.3.5-1
311- improve smart card related UI strings
312- removed possibility to set smart card type from authconfig-gtk
313  as only coolkey will be supported for now
314
315* Thu Aug 24 2006 Tomas Mraz <tmraz@redhat.com> - 5.3.4-1
316- pass options given to authconfig-gtk to authconfig (#203955)
317
318* Sun Jul 23 2006 Ray Strode <rstrode@redhat.com> - 5.3.3-2
319- write out new "wait_for_card" config option if we're
320  forcing smart card authentication
321- add "use_uid" option to smart card pam_succeed_if line to
322  work around bug where pam_succeed_if checks user information
323  even in cases where the conditional doesn't depend on it.
324- remove unimplemented "logout" smart card removal action from
325  settings
326- remove unnecessary "card_only" argument
327
328* Fri Jul 21 2006 Tomas Mraz <tmraz@redhat.com> - 5.3.3-1
329- don't start sceventd when smartcard login is enabled
330- improve pam config for smartcard login
331
332* Tue Jul 18 2006 Tomas Mraz <tmraz@redhat.com> - 5.3.2-1
333- don't require pam_pkcs11 to run
334
335* Tue Jul 18 2006 Tomas Mraz <tmraz@redhat.com> - 5.3.1-1
336- screensavers should be authenticated by smartcard too
337- add feature to download a CA certificate for LDAP from
338  an URL (#197103)
339- add pam_keyinit session module to the PAM configuration (#198638)
340
341* Fri Jul  7 2006 Tomas Mraz <tmraz@redhat.com> - 5.3.0-1
342- added support for smartcard authentication
343- fixed parsing kerberos realms
344
345* Thu May 18 2006 Tomas Mraz <tmraz@redhat.com> - 5.2.5-1
346- write ldap servers as URIs and not HOSTs (#191842)
347- fix a typo in --test output
348- updated summary, converted changelog to UTF-8
349
350* Fri May 12 2006 Tomas Mraz <tmraz@redhat.com> - 5.2.4-1
351- added crond to the services restarted after firstboot (#187334)
352- when checking nscd status redirect output to /dev/null (#188555)
353
354* Tue Mar 21 2006 Tomas Mraz <tmraz@redhat.com> - 5.2.3-1
355- make smb.conf and krb5.conf loading more robust (#185766)
356
357* Mon Feb 27 2006 Tomas Mraz <tmraz@redhat.com> - 5.2.2-1
358- add try_first_pass option to pam_unix for better integration
359  with individual service configurations (#182350)
360- updated translations
361
362* Mon Feb 20 2006 Tomas Mraz <tmraz@redhat.com> - 5.2.1-1
363- don't crash in TUI when some options aren't set (#182151)
364
365* Fri Feb  3 2006 Tomas Mraz <tmraz@redhat.com> - 5.2.0-1
366- redesigned GUI (#178112)
367- added man page for system-config-ac (#179584)
368- disable authentication of system accounts by network services
369  by default, added option for changing that (#179009)
370- updated translations, new languages
371
372* Mon Jan  9 2006 Tomas Mraz <tmraz@redhat.com> - 5.1.2-1
373- fixed regression when saving nsswitch.conf
374
375* Fri Jan  6 2006 Tomas Mraz <tmraz@redhat.com> - 5.1.1-1
376- print warning if PAM module is missing when the PAM configuration
377  is saved (#168880)
378
379* Fri Dec 23 2005 Tomas Mraz <tmraz@redhat.com>
380- make child dialog preset code more robust (#176462)
381
382* Sat Dec 17 2005 Tomas Mraz <tmraz@redhat.com> - 5.1.0-1
383- update only configuration files which settings were modified (#72290)
384
385* Mon Dec  5 2005 Tomas Mraz <tmraz@redhat.com> - 5.0.4-1
386- don't ignore krb5realm command line option (#174838)
387- read dns_lookup_realm and dns_lookup_kdc values correctly
388- the PAM configuration is now written in system-auth-ac file
389  which is then symlinked from system-auth, the symlink is not
390  overwritten so local PAM configuration is now possible (#165342)
391
392* Mon Nov  7 2005 Tomas Mraz <tmraz@redhat.com> - 5.0.3-1
393- add symlinks to python scripts in sbindir
394- don't override nullok setting from system-auth (#96996)
395
396* Fri Oct 14 2005 Tomas Mraz <tmraz@redhat.com> - 5.0.2-1
397- authinfo-tui.py is now symlink
398- reword the CA certificate message (#154317)
399- use include instead of pam_stack in pam config
400- don't break yp.conf with multiple domains (#127306)
401
402* Mon Sep  5 2005 Tomas Mraz <tmraz@redhat.com> - 5.0.1-1
403- fixed a few errors catched by pychecker
404
405* Sat Sep  3 2005 Tomas Mraz <tmraz@redhat.com> - 5.0.0-1
406- C code completely rewritten in Python
407- some bugs fixed in the process (and no doubt new introduced)
408- TUI deprecated, opens only when run as authconfig-tui
409
410* Mon Jun 20 2005 Tomas Mraz <tmraz@redhat.com> - 4.6.13-1
411- set domain and ypserver option correctly when multiple servers
412  specified in kickstart (#159214)
413
414* Tue Apr 12 2005 Tomas Mraz <tmraz@redhat.com> - 4.6.12-1
415- replaced deprecated gtk.TRUE/FALSE (#153034)
416- updated translations
417
418* Mon Mar 14 2005 Tomas Mraz <tmraz@redhat.com>
419- propagate the --enablewinbindauth option to the configuration (#151018)
420
421* Fri Mar  4 2005 Tomas Mraz <tmraz@redhat.com> - 4.6.11-1
422- changed version propagation
423
424* Thu Mar  3 2005 Tomas Mraz <tmraz@redhat.com>
425- updated translations
426- fixed build on gcc4
427
428* Wed Feb 23 2005 Tomas Mraz <tmraz@redhat.com> - 4.6.10-1
429- updated translations
430
431* Thu Feb 10 2005 Tomas Mraz <tmraz@redhat.com> - 4.6.9-1
432- improved the code that writes tls_cacertdir to ldap.conf
433
434* Tue Jan 25 2005 Tomas Mraz <tmraz@redhat.com>
435- renamed functions in authconfigmodule to be more clear
436- implemented cacertdir for LDAP with TLS
437
438* Mon Jan 24 2005 Tomas Mraz <tmraz@redhat.com>
439- fixed a bug in authinfo_differs when called from python
440
441* Fri Dec 17 2004 Tomas Mraz <tmraz@redhat.com> - 4.6.8-1
442- add option for making local authorization sufficient for local users
443  this is attempt to 'solve/workaround' the problem with blocking local logins by
444  pulling out network cable (#115181)
445
446* Wed Dec 15 2004 Tomas Mraz <tmraz@redhat.com>
447- remove dependency on nscd
448- don't show warning messages when switching options off
449
450* Mon Dec  6 2004 Tomas Mraz <tmraz@redhat.com> - 4.6.7-1
451- updated translations
452- winbind in authconfig-gtk.py was setting the nsswitch.conf on the auth tab
453- use GtkComboBox instead of deprecated GtkOptionMenu
454- disable options with not installed binaries, remove unnecessary deps of
455  authconfig-gtk
456
457* Thu Nov 18 2004 Tomas Mraz <tmraz@redhat.com> - 4.6.6-1
458- merged patches from dist
459- fix versioning
460
461* Mon Nov  8 2004 Jeremy Katz <katzj@redhat.com> - 4.6.5-6
462- rebuild against python 2.4
463
464* Thu Oct 28 2004 Dan Walsh <dwalsh@redhat.com>
465- Fix setsebool patch to turn off boolean
466
467* Thu Oct 28 2004 Dan Walsh <dwalsh@redhat.com>
468- Add setsebool for NIS
469
470* Fri Oct 15 2004 Tomas Mraz <tmraz@redhat.com>
471- force broken_shadow option on network auth (#136760)
472
473* Fri Oct 15 2004 Tomas Mraz <tmraz@redhat.com>
474- force restart of autofs on firstboot call when using NIS (#133035, #124498)
475
476* Thu Oct 07 2004 Tomas Mraz <tmraz@redhat.com>
477- require python to install (#134654)
478
479* Mon Oct 04 2004 Jindrich Novy <jnovy@redhat.com> 4.6.5-1
480- updated translations from upstream
481- autogeneration of build stripts in prep phase
482
483* Thu Sep 30 2004 Jindrich Novy <jnovy@redhat.com>
484- fixed man page
485- added dependency on nscd
486
487* Wed Sep 29 2004 Jindrich Novy <jnovy@redhat.com> 4.6.4-6
488- regenerated build scripts
489
490* Wed Sep 29 2004 Jindrich Novy <jnovy@redhat.com> 4.6.4-5
491- fixed all po files to translate correctly messages with modified accelerators (#133742)
492- added translations for Arabic, Bulgarian and other languages (#133716, #133158)
493
494* Wed Sep 22 2004 Jindrich Novy <jnovy@redhat.com> 4.6.4-4
495- added "quiet" option to pam_success_if PAM module in sytem-auth (#133179)
496
497* Mon Sep 13 2004 Jindrich Novy <jnovy@redhat.com> 4.6.4-3
498- corrected package dependencies #132411
499- regenerated glade.strings.h #132369
500
501* Wed Aug 25 2004 Jindrich Novy <jnovy@redhat.com> 4.6.4-2
502- modified authconfig-gtk interface to fit lower resolution screens (#127175)
503- modified accelerators in authconfig-gtk (#125797)
504- updated package dependencies (#125306)
505
506* Tue Aug 24 2004 Jindrich Novy <jnovy@redhat.com>
507- updated configure scripts
508- warnfixes and minor hacks
509
510* Mon Jun  7 2004 Nalin Dahyabhai <nalin@redhat.com> 4.6.4-1
511- tweak account management to fix #55193 correctly
512- require anything we might want to run in the gui subpackage because it
513  doesn't warn about missing things and you don't have a terminal to see
514  error messages about missing commands
515- properly display the domain in the GUI join dialog (#124621)
516
517* Tue May 11 2004 Nalin Dahyabhai <nalin@redhat.com> 4.6.3-1
518- omit the "ads" or "rpc" when calling "net join", Samba's smarter now (#122802)
519- properly warn about missing "net" (samba-client) and libnss_winbind and
520  pam_winbind (samba-common) in text mode (#122802)
521
522* Wed Apr 21 2004 Nalin Dahyabhai <nalin@redhat.com> 4.6.2-1
523- learn all about pam_passwdqc
524- preserve arguments to pam_cracklib and pam_passwdqc
525- short-circuit PAM authorization checks for users with UID < 100
526- remove redhat-config-authentication as a way to invoke the GUI tool (#115977)
527
528* Fri Feb  6 2004 Nalin Dahyabhai <nalin@redhat.com> 4.6.1-1
529- fix man page: --enableldapssl should be --enableldaptls
530- make --enableldapssl an alias for --enableldaptls
531
532* Thu Jan  8 2004 Nalin Dahyabhai <nalin@redhat.com> 4.6-1
533- authconfig-gtk.py: require rhpl, which is required by the script (#104209)
534- both: require usermode (authconfig-gtk transitively), else leave a dangling
535  symlink (#104209)
536- the great redhat-config-authentication/system-config-authentication renaming,
537  as was foretold in the fedora-config-list archives
538
539* Wed Jan  7 2004 Nalin Dahyabhai <nalin@redhat.com>
540- preserve "compat" if it's used in /etc/nsswitch.conf
541
542* Tue Nov 18 2003 Nalin Dahyabhai <nalin@redhat.com> 4.4-1
543- add options for toggling krb5's use of DNS
544
545* Mon Nov 17 2003 Nalin Dahyabhai <nalin@redhat.com>
546- rework tui to include winbind options. there wasn't enough room in the old
547  dialog to include the important options, so the whole thing's been reworked
548
549* Thu Nov 13 2003 Nalin Dahyabhai <nalin@redhat.com>
550- conflict with older versions of samba which expect different configuration
551
552* Mon Nov 10 2003 Nalin Dahyabhai <nalin@redhat.com>
553- initial support for configuring winbind
554
555* Tue Oct 28 2003 Nalin Dahyabhai <nalin@redhat.com>
556- make pam_cracklib requisite instead of required in generated PAM configs
557
558* Wed Oct 22 2003 Bill Nottingham <notting@redhat.com> 4.3.8-1
559- rebuild with current translations
560
561* Thu Aug 21 2003 Nalin Dahyabhai <nalin@redhat.com> 4.3.7-2
562- make the tarball name include the release number
563
564* Thu Aug 21 2003 Nalin Dahyabhai <nalin@redhat.com> 4.3.7-1
565- authconfig-gtk: condrestart certain additional services if invoked with
566  the --firstboot flag (half of #91268, needs cooperating firstboot)
567- translation updates
568
569* Mon Jul  7 2003 Nalin Dahyabhai <nalin@redhat.com> 4.3.6-1
570- translation updates
571
572* Mon Jun 30 2003 Nalin Dahyabhai <nalin@redhat.com>
573- add 'redhat-config-authentication' as an alias for authconfig-gtk
574- make authconfig-gtk exec authconfig if gui startup fails and it looks like
575  we're connected to a tty
576
577* Thu Jun 05 2003 Elliot Lee <sopwith@redhat.com>
578- rebuilt
579
580* Mon May  5 2003 Nalin Dahyabhai <nalin@redhat.com> 4.3.5-1
581- translation updates
582- close unusable file descriptors if locking fails
583
584* Tue Feb 18 2003 Nalin Dahyabhai <nalin@redhat.com> 4.3.4-1
585- learn how to toggle defaults/crypt_style in /etc/libuser.conf (#79337)
586
587* Fri Feb  7 2003 Nalin Dahyabhai <nalin@redhat.com> 4.3.3-1
588- look in /lib64 for modules for nsswitch and PAM by default on
589  x86_64, ppc64, and s390x (#83049)
590
591* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
592- rebuilt
593 
594* Mon Nov  4 2002 Nalin Dahyabhai <nalin@redhat.com> 4.3.2-1
595- update translations
596- update copyright strings (only took 10 months!)
597
598* Wed Oct 23 2002 Nalin Dahyabhai <nalin@redhat.com> 4.3.1-1
599- require a version of PAM (0.75-43) which supports $ISA
600- use $ISA in our own PAM config files
601
602* Tue Oct 22 2002 Nalin Dahyabhai <nalin@redhat.com>
603- add $ISA to the name of the directory in which we expect PAMs to be stored
604
605* Fri Sep 20 2002 Nalin Dahyabhai <nalin@redhat.com> 4.3-1
606- build with -fPIC, necessary on some arches
607
608* Tue Sep  3 2002 Nalin Dahyabhai <nalin@redhat.com> 4.2.11-3
609- update translations
610
611* Thu Aug 29 2002 Trond Eivind Glomsrød <teg@redhat.com> 4.2.12-2
612- Update translations
613
614* Fri Aug 23 2002 Nalin Dahyabhai <nalin@redhat.com> 4.2.11-1
615- modify spacing and layout in authconfig-gtk
616
617* Thu Aug 15 2002 Nalin Dahyabhai <nalin@redhat.com> 4.2.10-4
618- translation updates
619- rebuild to pick up dependency changes
620
621* Mon Jul 29 2002 Nalin Dahyabhai <nalin@redhat.com> 4.2.10-3
622- include the userhelper configuration file
623- require sufficiently-new pam package in the gui subpackage
624
625* Fri Jul 26 2002 Nalin Dahyabhai <nalin@redhat.com> 4.2.10-2
626- actually include the icon in the package
627- translation updates
628
629* Tue Jul 23 2002 Nalin Dahyabhai <nalin@redhat.com> 4.2.10-1
630- use desktop-file-install (#69376)
631- include an icon for the menu item (#68577)
632
633* Wed Jul 17 2002 Nalin Dahyabhai <nalin@redhat.com> 4.2.9-2
634- own the pkgdatadir
635- pull in translation updates
636
637* Mon Jun  3 2002 Nalin Dahyabhai <nalin@redhat.com> 4.2.9-1
638- add --enable-experimental to enable some of that experimental code
639- add --enable-local to enable local policies
640- update translations
641
642* Thu May 30 2002 Nalin Dahyabhai <nalin@redhat.com> 4.2.8-7
643- use the current revision of python by default
644- get the intltool/gettext situation sorted out
645
646* Thu May 23 2002 Tim Powers <timp@redhat.com>
647- automated rebuild
648
649* Fri May  3 2002 Nalin Dahyabhai <nalin@redhat.com> 4.2.8-5
650- remove bogus buildrequires left over from when authconfig-gtk was C code
651- buildrequires python-devel in addition to python (to build the python module,
652  but we still need python to byte-compile the python script)
653
654* Thu Apr 18 2002 Nalin Dahyabhai <nalin@redhat.com> 4.2.8-4
655- add missing translations back in
656- convert .mo files at install-time
657
658* Mon Apr 15 2002 Nalin Dahyabhai <nalin@redhat.com> 4.2.8-3
659- refresh translations
660
661* Wed Apr 10 2002 Nalin Dahyabhai <nalin@redhat.com> 4.2.8-2
662- actually add the .desktop files
663
664* Tue Apr  9 2002 Nalin Dahyabhai <nalin@redhat.com> 4.2.8-1
665- refresh translations
666- destroy the python object correctly
667
668* Tue Mar 26 2002 Nalin Dahyabhai <nalin@redhat.com> 4.2.7-2
669- add the .desktop file
670
671* Mon Mar 25 2002 Nalin Dahyabhai <nalin@redhat.com> 4.2.7-1
672- rework the auth stack logic to require all applicable auth modules
673
674* Fri Mar  1 2002 Nalin Dahyabhai <nalin@redhat.com> 4.2.6-1
675- allow pam_krb5afs to be used for account management, too
676
677* Mon Feb 25 2002 Nalin Dahyabhai <nalin@redhat.com> 4.2.5-3
678- refresh translations
679
680* Fri Feb 22 2002 Nalin Dahyabhai <nalin@redhat.com> 4.2.5-2
681- refresh translations
682
683* Tue Feb 12 2002 Nalin Dahyabhai <nalin@redhat.com> 4.2.5-1
684- actually free authInfo structures when asked to
685- use pam_krb5's account management facilities
686- conflict with versions of pam_krb5 which don't offer account management
687
688* Mon Feb  4 2002 Nalin Dahyabhai <nalin@redhat.com> 4.2.4-1
689- add python bindings for the back-end
690- redo the gui so that it exercises the python bindings
691- take a shot at getting authconfig to work in a firstboot container
692
693* Thu Jan 31 2002 Nalin Dahyabhai <nalin@redhat.com> 4.2.3-4
694- rebuild again
695
696* Wed Jan 30 2002 Tim Powers <timp@redhat.com> 4.2.3-3
697- rebuilt against new glib
698
699* Wed Jan 23 2002 Nalin Dahyabhai <nalin@redhat.com> 4.2.3-2
700- rebuild in new environment
701
702* Thu Jan 10 2002 Nalin Dahyabhai <nalin@redhat.com> 4.2.3-1
703- add some more experimental options
704- clean up the glade files a bit
705- don't destroy a garbage pointer on main cancel, destroy the main dialog
706
707* Thu Jan  3 2002 Nalin Dahyabhai <nalin@redhat.com> 4.2.2-2
708- bump release and rebuild
709
710* Thu Dec 20 2001 Nalin Dahyabhai <nalin@redhat.com> 4.2.2-1
711- make setting of experimental options only possible through
712  /etc/sysconfig/authconfig, to keep accidents from happening
713- add some more support for experimental stuff
714
715* Tue Dec 11 2001 Nalin Dahyabhai <nalin@redhat.com> 4.2.1-1
716- fix setting of LDAP TLS option in authconfig-gtk
717- change Apply to Ok, Close to Cancel, because that's how they work
718
719* Tue Dec 11 2001 Nalin Dahyabhai <nalin@redhat.com> 4.2-2
720- add the glade XML file to the -gtk subpackage (fix from katzj)
721
722* Mon Dec 10 2001 Nalin Dahyabhai <nalin@redhat.com> 4.2-1
723- port to glib2
724- move post code to the back-end
725- add a libglade GUI in a -gtk subpackage
726- set up to use userhelper
Note: See TracBrowser for help on using the repository browser.