source: projects/specs/branches/6/a/authconfig/authconfig-vl.spec @ 3512

Revision 3512, 26.4 KB checked in by owa, 13 years ago (diff)

rebuilt

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