source: projects/specs/trunk/p/pam/pam-vl.spec @ 12423

Revision 12423, 72.9 KB checked in by tomop, 4 years ago (diff)

updated 5 packages

OpenEXR-2.4.2-1

pam-1.4.0-1

python-pillow-7.2.0-1

python-qt5-5.12.3-3

sane-1.0.30-1

Line 
1%bcond_with systemd
2%define pam_redhat_version 1.1.3
3
4%define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
5
6
7Summary: A security tool which provides authentication for applications
8Summary(ja): アプリケーションに認証の仕組みを提供するセキュリティツール
9Name: pam
10Version: 1.4.0
11Release: 1%{?_dist_release}%{?with_systemd:.systemd}
12Group: System Environment/Base
13Vendor: Project Vine
14Distribution: Vine Linux
15Packager: daisuke
16
17# The library is BSD licensed with option to relicense as GPLv2+
18# - this option is redundant as the BSD license allows that anyway.
19# pam_timestamp, pam_loginuid, and pam_console modules are GPLv2+.
20License: BSD and GPLv2+
21URL: http://www.us.kernel.org/pub/linux/libs/pam/index.html
22Source0: https://github.com/linux-pam/linux-pam/releases/download/v%{version}/Linux-PAM-%{version}.tar.xz
23Source2: https://releases.pagure.org/pam-redhat/pam-redhat-%{pam_redhat_version}.tar.bz2
24Source5: other.pamd
25Source6: system-auth.pamd
26Source7: password-auth.pamd
27Source8: fingerprint-auth.pamd
28Source9: smartcard-auth.pamd
29Source10: config-util.pamd
30Source11: dlopen.sh
31Source12: system-auth.5
32Source13: config-util.5
33Source14: 90-nproc.conf
34Source15: pamtmp.conf
35Source16: postlogin.pamd
36Source17: postlogin.5
37Source18: https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
38Patch1:  pam-1.4.0-redhat-modules.patch
39Patch9:  pam-1.4.0-noflex.patch
40Patch10: pam-1.4.0-nouserenv.patch
41Patch13: pam-1.1.6-limits-user.patch
42Patch15: pam-1.4.0-full-relro.patch
43# Upstreamed partially
44Patch29: pam-1.4.0-pwhistory-helper.patch
45Patch31: pam-1.1.8-audit-user-mgmt.patch
46Patch33: pam-1.3.0-unix-nomsg.patch
47Patch34: pam-1.4.0-coverity.patch
48# https://github.com/linux-pam/linux-pam/commit/af0faf666c5008e54dfe43684f210e3581ff1bca
49# https://github.com/linux-pam/linux-pam/commit/0e9b286afe1224b91ff00936058b084ad4b776e4
50Patch57: pam-1.4.0-determine-user-exists.patch
51# https://github.com/linux-pam/linux-pam/commit/395915dae1571e10e2766c999974de864655ea3a
52Patch58: pam-1.3.1-faillock-change-file-permissions.patch
53
54
55Patch1000: pam-1.4.0-ja.po.patch
56
57%define _sbindir /sbin
58%define _moduledir /%{_lib}/security
59%define _secconfdir %{_sysconfdir}/security
60%define _pamconfdir %{_sysconfdir}/pam.d
61
62# VINE
63%define WITH_SELINUX 0
64%define WITH_AUDIT 1
65
66%global _performance_build 1
67
68BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
69Requires: cracklib, cracklib-dicts >= 2.8
70Requires: libpwquality
71Requires(post): /sbin/ldconfig
72Requires(postun): /sbin/ldconfig
73BuildRequires: autoconf >= 2.60
74BuildRequires: automake, libtool
75BuildRequires: bison, flex, sed
76BuildRequires: cracklib, cracklib-dicts >= 2.8
77BuildRequires: perl, pkgconfig, gettext
78%if %{WITH_AUDIT}
79BuildRequires: audit-libs-devel >= 1.0.8
80%endif
81%if %{WITH_SELINUX}
82BuildRequires: libselinux-devel >= 1.33.2
83Requires: libselinux >= 1.33.2
84%endif
85BuildRequires: glibc >= 2.3.90-37
86Requires: glibc >= 2.3.90-37
87# Following deps are necessary only to build the pam library documentation.
88BuildRequires: linuxdoc-tools, w3m, libxslt
89BuildRequires: docbook-style-xsl, docbook-dtds
90BuildRequires: libdb-devel
91# pam.d/login in old util-linux uses obsolete pam module.
92Conflicts: util-linux < 2.14
93
94
95%description
96PAM (Pluggable Authentication Modules) is a system security tool that
97allows system administrators to set authentication policy without
98having to recompile programs that handle authentication.
99
100%description -l ja
101PAM (Pluggable Authentication Modules) は,システム管理者が
102プログラムを再コンパイルすることなく認証ポリシーを設定出来る
103システムセキュリティツールです.
104
105
106%package -n compat32-%{name}
107Summary: A security tool which provides authentication for applications.
108Summary(ja): アプリケーションに認証の仕組みを提供するセキュリティツール
109Group: System Environment/Base
110Requires: %{name} = %{version}-%{release}
111Requires(post): /sbin/ldconfig
112Requires(postun): /sbin/ldconfig
113
114%description -n compat32-%{name}
115PAM (Pluggable Authentication Modules) is a system security tool
116which allows system administrators to set authentication policy
117without having to recompile programs which do authentication.
118
119%description -n compat32-%{name} -l ja
120PAM (Pluggable Authentication Modules) は,システム管理者が
121プログラムを再コンパイルすることなく認証ポリシーを設定出来る
122システムセキュリティツールです.
123
124
125%package devel
126Group: Development/Libraries
127Summary: Files needed for developing PAM-aware applications and modules for PAM
128Summary(ja): PAM 対応アプリケーションや PAM モジュール開発に必要なファイル
129Requires: pam = %{version}-%{release}
130
131
132%description devel
133PAM (Pluggable Authentication Modules) is a system security tool that
134allows system administrators to set authentication policy without
135having to recompile programs that handle authentication. This package
136contains header files and static libraries used for building both
137PAM-aware applications and modules for use with PAM.
138
139%description devel -l ja
140PAM (Pluggable Authentication Modules) は,システム管理者が
141プログラムを再コンパイルすることなく認証ポリシーを設定出来る
142システムセキュリティツールです.
143このパッケージには,PAM 対応アプリケーションや PAM モジュールを
144開発するのに必要なヘッダファイルと静的ライブラリが収められています.
145
146
147
148%package -n compat32-%{name}-devel
149Group: Development/Libraries
150Summary: Files needed for developing PAM-aware applications and modules for PAM.
151Summary(ja): PAM 対応アプリケーションや PAM モジュール開発に必要なファイル
152Requires: compat32-%{name} = %{version}-%{release}
153Requires: %{name}-devel    = %{version}-%{release}
154
155
156%description -n compat32-%{name}-devel
157PAM (Pluggable Authentication Modules) is a system security tool
158which allows system administrators to set authentication policy
159without having to recompile programs which do authentication.  This
160package contains header files and static libraries used for building
161both PAM-aware applications and modules for use with PAM.
162
163%description -n compat32-%{name}-devel -l ja
164PAM (Pluggable Authentication Modules) は,システム管理者が
165プログラムを再コンパイルすることなく認証ポリシーを設定出来る
166システムセキュリティツールです.
167このパッケージには,PAM 対応アプリケーションや PAM モジュールを
168開発するのに必要なヘッダファイルと静的ライブラリが収められています.
169
170
171%prep
172%setup -q -n Linux-PAM-%{version} -a 2
173perl -pi -e "s/\/lib \/usr\/lib/\/lib \/usr\/lib \/lib64 \/usr\/lib64/" m4/libtool.m4
174
175# Add custom modules.
176mv pam-redhat-%{pam_redhat_version}/* modules
177
178cp %{SOURCE18} .
179
180%patch1 -p1 -b .redhat-modules
181%patch9 -p1 -b .noflex
182%patch10 -p1 -b .nouserenv
183%patch13 -p1 -b .limits
184%patch15 -p1 -b .relro
185%patch29 -p1 -b .pwhhelper
186%patch31 -p1 -b .audit-user-mgmt
187%patch33 -p1 -b .nomsg
188%patch34 -p1 -b .coverity
189%patch57 -p1 -b .determinine-user-exists
190%patch58 -p1 -b .faillock-change-file-permissions
191
192%patch1000 -p1 -b .ja
193
194## security patch(es)
195
196autoreconf -i
197
198
199%build
200%configure \
201        --disable-rpath \
202        --libdir=/%{_lib} \
203        --includedir=%{_includedir}/security \
204        --enable-isadir=../..%{_moduledir} \
205%if ! %{WITH_SELINUX}
206        --disable-selinux \
207%endif
208%if ! %{WITH_AUDIT}
209        --disable-audit \
210%endif
211        --disable-static \
212        --disable-prelude
213make -C po update-gmo
214make
215# we do not use _smp_mflags because the build of sources in yacc/flex fails
216
217
218%install
219rm -rf %{buildroot}
220
221mkdir -p doc/txts
222for readme in modules/pam_*/README ; do
223        cp -f ${readme} doc/txts/README.`dirname ${readme} | sed -e 's|^modules/||'`
224done
225
226rm -rf doc/txts/README.pam_tally*
227rm -rf doc/sag/html/*pam_tally*
228
229# Install the binaries, libraries, and modules.
230make install DESTDIR=%{buildroot} LDCONFIG=:
231
232%if %{WITH_SELINUX}
233# Temporary compat link
234ln -sf pam_sepermit.so %{buildroot}%{_moduledir}/pam_selinux_permit.so
235%endif
236
237# RPM uses docs from source tree
238rm -rf %{buildroot}%{_datadir}/doc/Linux-PAM
239# Included in setup package
240rm -f %{buildroot}%{_sysconfdir}/environment
241
242# Install default configuration files.
243install -d -m 755 %{buildroot}%{_pamconfdir}
244install -m 644 %{SOURCE5} %{buildroot}%{_pamconfdir}/other
245install -m 644 %{SOURCE6} %{buildroot}%{_pamconfdir}/system-auth
246install -m 644 %{SOURCE7} %{buildroot}%{_pamconfdir}/password-auth
247install -m 644 %{SOURCE8} %{buildroot}%{_pamconfdir}/fingerprint-auth
248install -m 644 %{SOURCE9} %{buildroot}%{_pamconfdir}/smartcard-auth
249install -m 644 %{SOURCE10} %{buildroot}%{_pamconfdir}/config-util
250install -m 644 %{SOURCE16} %{buildroot}%{_pamconfdir}/postlogin
251install -m 644 %{SOURCE14} %{buildroot}%{_secconfdir}/limits.d/90-nproc.conf
252install -m 600 /dev/null %{buildroot}%{_secconfdir}/opasswd
253
254install -d -m 755 $RPM_BUILD_ROOT/var/log
255install -d -m 755 $RPM_BUILD_ROOT/var/run/faillock
256install -d -m 755 $RPM_BUILD_ROOT%{_sysconfdir}/motd.d
257install -d -m 755 $RPM_BUILD_ROOT/usr/lib/motd.d
258install -d -m 755 $RPM_BUILD_ROOT/run/motd.d
259
260
261# Install man pages.
262install -m 644 %{SOURCE12} %{SOURCE13} ${SOURCE17} %{buildroot}%{_mandir}/man5/
263
264for phase in auth acct passwd session ; do
265        ln -sf pam_unix.so %{buildroot}%{_moduledir}/pam_unix_${phase}.so
266done
267
268# Remove .la files and make new .so links -- this depends on the value
269# of _libdir not changing, and *not* being /usr/lib.
270install -d -m 755 %{buildroot}%{_libdir}
271for lib in libpam libpamc libpam_misc ; do
272pushd %{buildroot}%{_libdir}
273ln -sf ../../%{_lib}/${lib}.so.*.* ${lib}.so
274popd
275rm -f %{buildroot}/%{_lib}/${lib}.so
276rm -f %{buildroot}/%{_lib}/${lib}.la
277done
278rm -f %{buildroot}%{_moduledir}/*.la
279
280# Duplicate doc file sets.
281rm -fr %{buildroot}/usr/share/doc/pam
282
283# Create /lib/security in case it isn't the same as %{_moduledir}.
284install -m755 -d %{buildroot}/lib/security
285
286%if %{with systemd}
287# Install the file for autocreation of /run subdirectories on boot
288install -m644 -D %{SOURCE15} %{buildroot}%{_prefix}/lib/tmpfiles.d/pam.conf
289mkdir -p %{buildroot}%{_unitdir}
290mv %{buildroot}/usr/lib/systemd/system/pam_namespace.service %{buildroot}%{_unitdir}/
291%else
292rm -f %{buildroot}/usr/lib/systemd/system/pam_namespace.service
293%endif
294
295%find_lang Linux-PAM
296
297
298%check
299# Make sure every module subdirectory gave us a module.  Yes, this is hackish.
300for dir in modules/pam_* ; do
301if [ -d ${dir} ] ; then
302%if ! %{WITH_SELINUX}
303        [ ${dir} = "modules/pam_selinux" -o \
304          ${dir} = "modules/pam_sepermit" ] && continue
305%endif 
306%if ! %{WITH_AUDIT}
307        [ ${dir} = "modules/pam_tty_audit" ] && continue
308%endif 
309        [ ${dir} = "modules/pam_tally" ] && continue
310        [ ${dir} = "modules/pam_tally2" ] && continue
311        [ ${dir} = "modules/pam_cracklib" ] && continue
312        if ! ls -1 %{buildroot}%{_moduledir}/`basename ${dir}`*.so ; then
313                echo ERROR `basename ${dir}` did not build a module.
314                exit 1
315        fi
316fi
317done
318
319# Check for module problems.  Specifically, check that every module we just
320# installed can actually be loaded by a minimal PAM-aware application.
321/sbin/ldconfig -n %{buildroot}/%{_lib}
322for module in %{buildroot}%{_moduledir}/pam*.so ; do
323        if ! env LD_LIBRARY_PATH=%{buildroot}/%{_lib} \
324                 %{SOURCE11} -ldl -lpam -L%{buildroot}/%{_libdir} ${module} ; then
325                echo ERROR module: ${module} cannot be loaded.
326                exit 1
327        fi
328done
329
330
331%clean
332rm -rf %{buildroot}
333
334%post -p <lua>
335os.execute("/sbin/ldconfig")
336list = {"faillog", "tallylog"}
337for i, f in pairs(list) do
338  fname = "/var/log/"..f
339  if not posix.access(fname, "r") then
340    f = io.open(fname, "w")
341    f:close()
342    posix.chmod(fname, "u+rw,go-rwx")
343  end
344end
345if posix.access("/etc/rc.d/init.d/sshd", "x") then
346  os.execute("/etc/rc.d/init.d/sshd condrestart")
347end
348
349%preun
350
351%postun -p /sbin/ldconfig
352
353%post -n compat32-%{name} -p /sbin/ldconfig
354
355%postun -n compat32-%{name} -p /sbin/ldconfig
356
357
358%files -f Linux-PAM.lang
359%defattr(-,root,root)
360%dir %{_pamconfdir}
361%config(noreplace) %{_pamconfdir}/other
362%config(noreplace) %{_pamconfdir}/system-auth
363%config(noreplace) %{_pamconfdir}/password-auth
364%config(noreplace) %{_pamconfdir}/fingerprint-auth
365%config(noreplace) %{_pamconfdir}/smartcard-auth
366%config(noreplace) %{_pamconfdir}/config-util
367%config(noreplace) %{_pamconfdir}/postlogin
368%license Copyright
369%license gpl-2.0.txt
370%doc doc/txts
371%doc doc/sag/*.txt doc/sag/html
372%doc doc/specs/rfc86.0.txt
373/%{_lib}/libpam.so.*
374/%{_lib}/libpamc.so.*
375/%{_lib}/libpam_misc.so.*
376%{_sbindir}/faillock
377%{_sbindir}/pam_console_apply
378%{_sbindir}/pam_namespace_helper
379%attr(4755,root,root) %{_sbindir}/pam_timestamp_check
380%attr(4755,root,root) %{_sbindir}/unix_chkpwd
381%attr(0700,root,root) %{_sbindir}/unix_update
382%attr(0755,root,root) %{_sbindir}/mkhomedir_helper
383%attr(0755,root,root) %{_sbindir}/pwhistory_helper
384%if %{_lib} != lib
385%dir /lib/security
386%endif
387%dir %{_moduledir}
388%{_moduledir}/pam_access.so
389%{_moduledir}/pam_chroot.so
390%{_moduledir}/pam_console.so
391%{_moduledir}/pam_debug.so
392%{_moduledir}/pam_deny.so
393%{_moduledir}/pam_echo.so
394%{_moduledir}/pam_env.so
395%{_moduledir}/pam_exec.so
396%{_moduledir}/pam_faildelay.so
397%{_moduledir}/pam_faillock.so
398%{_moduledir}/pam_filter.so
399%{_moduledir}/pam_ftp.so
400%{_moduledir}/pam_group.so
401%{_moduledir}/pam_issue.so
402%{_moduledir}/pam_keyinit.so
403%{_moduledir}/pam_lastlog.so
404%{_moduledir}/pam_limits.so
405%{_moduledir}/pam_listfile.so
406%{_moduledir}/pam_localuser.so
407%{_moduledir}/pam_loginuid.so
408%{_moduledir}/pam_mail.so
409%{_moduledir}/pam_mkhomedir.so
410%{_moduledir}/pam_motd.so
411%{_moduledir}/pam_namespace.so
412%{_moduledir}/pam_nologin.so
413%{_moduledir}/pam_permit.so
414%{_moduledir}/pam_postgresok.so
415%{_moduledir}/pam_pwhistory.so
416%{_moduledir}/pam_rhosts.so
417%{_moduledir}/pam_rootok.so
418%if %{WITH_SELINUX}
419%{_moduledir}/pam_selinux.so
420%{_moduledir}/pam_selinux_permit.so
421%{_moduledir}/pam_sepermit.so
422%endif
423%{_moduledir}/pam_securetty.so
424%{_moduledir}/pam_setquota.so
425%{_moduledir}/pam_shells.so
426%{_moduledir}/pam_stress.so
427%{_moduledir}/pam_succeed_if.so
428%{_moduledir}/pam_time.so
429%{_moduledir}/pam_timestamp.so
430%if %{WITH_AUDIT}
431%{_moduledir}/pam_tty_audit.so
432%endif
433%{_moduledir}/pam_umask.so
434%{_moduledir}/pam_unix.so
435%{_moduledir}/pam_unix_acct.so
436%{_moduledir}/pam_unix_auth.so
437%{_moduledir}/pam_unix_passwd.so
438%{_moduledir}/pam_unix_session.so
439%{_moduledir}/pam_userdb.so
440%{_moduledir}/pam_usertype.so
441%{_moduledir}/pam_warn.so
442%{_moduledir}/pam_wheel.so
443%{_moduledir}/pam_xauth.so
444%{_moduledir}/pam_filter
445%dir %{_secconfdir}
446%config(noreplace) %{_secconfdir}/access.conf
447%config(noreplace) %{_secconfdir}/chroot.conf
448%config %{_secconfdir}/console.perms
449%config(noreplace) %{_secconfdir}/console.handlers
450%config(noreplace) %{_secconfdir}/faillock.conf
451%config(noreplace) %{_secconfdir}/group.conf
452%config(noreplace) %{_secconfdir}/limits.conf
453%dir %{_secconfdir}/limits.d
454%config(noreplace) %{_secconfdir}/limits.d/90-nproc.conf
455%config(noreplace) %{_secconfdir}/namespace.conf
456%dir %{_secconfdir}/namespace.d
457%attr(755,root,root) %config(noreplace) %{_secconfdir}/namespace.init
458%config(noreplace) %{_secconfdir}/pam_env.conf
459%if %{WITH_SELINUX}
460%config(noreplace) %{_secconfdir}/sepermit.conf
461%dir /var/run/sepermit
462%endif
463%dir /var/run/faillock
464%dir %{_sysconfdir}/motd.d
465%dir /run/motd.d
466%dir /usr/lib/motd.d
467%config(noreplace) %{_secconfdir}/time.conf
468%config(noreplace) %{_secconfdir}/opasswd
469%dir %{_secconfdir}/console.apps
470%dir %{_secconfdir}/console.perms.d
471%dir /var/run/console
472%if %{WITH_SELINUX}
473%dir /var/run/sepermit
474%endif
475%ghost %verify(not md5 size mtime) /var/log/faillog
476%ghost %verify(not md5 size mtime) /var/log/tallylog
477%{_mandir}/man5/*
478%{_mandir}/man8/*
479%if %{with systemd}
480%{_prefix}/lib/tmpfiles.d/pam.conf
481%{_unitdir}/pam_namespace.service
482%endif
483
484
485%files devel
486%defattr(-,root,root)
487%{_includedir}/security/
488%{_mandir}/man3/*
489%{_libdir}/libpam.so
490%{_libdir}/libpamc.so
491%{_libdir}/libpam_misc.so
492%doc doc/adg/*.txt doc/adg/html
493
494
495%if %{build_compat32}
496%files -n compat32-%{name}
497%defattr(-,root,root)
498%dir %{_pamconfdir}
499/%{_lib}/libpam.so.*
500/%{_lib}/libpamc.so.*
501/%{_lib}/libpam_misc.so.*
502%dir /%{_lib}/security
503%dir %{_moduledir}
504%{_moduledir}/pam_access.so
505%{_moduledir}/pam_chroot.so
506%{_moduledir}/pam_console.so
507%{_moduledir}/pam_debug.so
508%{_moduledir}/pam_deny.so
509%{_moduledir}/pam_echo.so
510%{_moduledir}/pam_env.so
511%{_moduledir}/pam_exec.so
512%{_moduledir}/pam_faildelay.so
513%{_moduledir}/pam_filter.so
514%{_moduledir}/pam_ftp.so
515%{_moduledir}/pam_group.so
516%{_moduledir}/pam_issue.so
517%{_moduledir}/pam_keyinit.so
518%{_moduledir}/pam_lastlog.so
519%{_moduledir}/pam_limits.so
520%{_moduledir}/pam_listfile.so
521%{_moduledir}/pam_localuser.so
522%{_moduledir}/pam_loginuid.so
523%{_moduledir}/pam_mail.so
524%{_moduledir}/pam_mkhomedir.so
525%{_moduledir}/pam_motd.so
526%{_moduledir}/pam_namespace.so
527%{_moduledir}/pam_nologin.so
528%{_moduledir}/pam_permit.so
529%{_moduledir}/pam_postgresok.so
530%{_moduledir}/pam_pwhistory.so
531%{_moduledir}/pam_rhosts.so
532%{_moduledir}/pam_rootok.so
533%if %{WITH_SELINUX}
534%{_moduledir}/pam_selinux.so
535%{_moduledir}/pam_selinux_permit.so
536%{_moduledir}/pam_sepermit.so
537%endif
538%{_moduledir}/pam_securetty.so
539%{_moduledir}/pam_setquota.so
540%{_moduledir}/pam_shells.so
541%{_moduledir}/pam_stress.so
542%{_moduledir}/pam_succeed_if.so
543%{_moduledir}/pam_time.so
544%{_moduledir}/pam_timestamp.so
545%if %{WITH_AUDIT}
546%{_moduledir}/pam_tty_audit.so
547%endif
548%{_moduledir}/pam_umask.so
549%{_moduledir}/pam_unix.so
550%{_moduledir}/pam_unix_acct.so
551%{_moduledir}/pam_unix_auth.so
552%{_moduledir}/pam_unix_passwd.so
553%{_moduledir}/pam_unix_session.so
554%{_moduledir}/pam_userdb.so
555%{_moduledir}/pam_usertype.so
556%{_moduledir}/pam_warn.so
557%{_moduledir}/pam_wheel.so
558%{_moduledir}/pam_xauth.so
559%{_moduledir}/pam_filter
560
561%files -n compat32-%{name}-devel
562%defattr(-,root,root)
563%{_libdir}/libpam.so
564%{_libdir}/libpamc.so
565%{_libdir}/libpam_misc.so
566%endif
567
568
569%changelog
570* Sat Jul 04 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.4.0-1
571- updated to 1.4.0.
572- updated rawhide's patches.
573- updated Patch1000 (ja.po).
574
575* Tue Mar 24 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.3.1-1
576- updated to 1.3.1.
577- updated rawhide's patches.
578- updated Patch1000 (ja.po).
579
580* Thu Nov 09 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.3.0-2
581- updated ja.po.
582
583* Sat Sep 09 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.3.0-1
584- updated to 1.3.0.
585- dropped all patches.
586- imported patches from rawhide.
587
588* Sat Feb 13 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.8-2
589- add Requires: libpwquality
590
591* Tue Jun 17 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 1.1.8-1
592- update to 1.1.8
593- add default password-auth, fingerprint-auth, smartcard-auth and postlogin
594
595* Wed Oct 26 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.1.1-8
596- add patch1020 for fix CVE-2011-3148 (parsing environment)
597- add patch1030 for fix CVE-2011-3149 (parsing environment)
598
599* Tue May 17 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.1-7
600- fix %%post script bug..
601
602* Thu May 12 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.1-6
603- use lua in %%post scriptlet
604  - remove coreutils from R(post)
605
606* Tue Apr 19 2011 IWAI, Masaharu <iwai@alib.jp> 1.1.1-5
607- add patches from RHEL 1.1.1-4.1
608 - drop-privs patch (Patch1009): fix CVE-2010-3435 and CVE-2010-3316
609 - CVE-2010-3853 (Patch1010)
610
611* Mon Apr 18 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.1-4
612- rebuilt with recent environment.
613
614* Fri Feb 12 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.1.1-3
615- add pam_pwhistory.so to the filelist
616
617* Thu Feb 11 2010 Shu KONNO <owa@bg.wakwak.com> 1.1.1-2
618- rebuilt with db4-4.8 (on x86_64)
619
620* Mon Feb 01 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.1-1
621- new upstream release
622- rebuild with external db4
623- drop tests for net pulling in libpthread (as NPTL should be safe)
624- drop obsolete pam_tally
625
626* Sat Jul 19 2008 NAKAMURA Kenta <kenta@vinelinux.org> 1.0.1-5
627- fixed typo in %%files section
628
629* Tue Jul 08 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-4
630- add Conflicts: util-linux < 2.14
631  - pam.d/login in util-linux uses obsolete pam module.
632
633* Mon Jun 23 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.0.1-3
634- updated to 1.0.1 based on 1.0.1-2 from Fedora
635- fix %%files and %%check sections when WITH_{AUDIT,SELINUX} both set to 0
636- import Patch700 from 0.99.3.0-0vl4
637  - Tue Sep 14 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 0.99.3.0-0vl4
638  - add Patch700 to allow console user to access sg devices. <BTS:VineLinux:93>
639- modify %%post section same as previous Vine versions did
640  - Sun Mar 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.99.3.0-0vl2
641  - use "condrestart" to restart sshd instead of "restart"
642  - Sat Mar 29 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 0.75-48vl3
643  - added sshd restart script in %%post section
644- other Vine changes include:
645  - Sun Feb 12 2006 NAKAMURA Kenta <kenta@c.csce.kyushu-u.ac.jp> 0.77-38vl4
646  - added compat32-* packages for x86_64 architecture support
647
648* Tue Apr 22 2008 Tomas Mraz <tmraz@redhat.com> 1.0.1-2
649- pam_selinux: restore execcon properly (#443667)
650
651* Fri Apr 18 2008 Tomas Mraz <tmraz@redhat.com> 1.0.1-1
652- upgrade to new upstream release (one bugfix only)
653- fix pam_sepermit use in screensavers
654
655* Mon Apr  7 2008 Tomas Mraz <tmraz@redhat.com> 1.0.0-2
656- fix regression in pam_set_item
657
658* Fri Apr  4 2008 Tomas Mraz <tmraz@redhat.com> 1.0.0-1
659- upgrade to new upstream release (bugfix only)
660
661* Thu Mar 20 2008 Tomas Mraz <tmraz@redhat.com> 0.99.10.0-4
662- pam_namespace: fix problem with level polyinst (#438264)
663- pam_namespace: improve override checking for umount
664- pam_selinux: fix syslogging a context after free() (#438338)
665
666* Thu Feb 28 2008 Tomas Mraz <tmraz@redhat.com> 0.99.10.0-3
667- update pam-redhat module tarball
668- update internal db4
669
670* Fri Feb 22 2008 Tomas Mraz <tmraz@redhat.com> 0.99.10.0-2
671- if shadow is readable for an user do not prevent him from
672  authenticating any user with unix_chkpwd (#433459)
673- call audit from unix_chkpwd when appropriate
674
675* Fri Feb 15 2008 Tomas Mraz <tmraz@redhat.com> 0.99.10.0-1
676- new upstream release
677- add default soft limit for nproc of 1024 to prevent
678  accidental fork bombs (#432903)
679
680* Mon Feb  4 2008 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-18
681- allow the package to build without SELinux and audit support (#431415)
682- macro usage cleanup
683
684* Mon Jan 28 2008 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-17
685- test for setkeycreatecon correctly
686- add exclusive login mode of operation to pam_selinux_permit (original
687  patch by Dan Walsh)
688
689* Tue Jan 22 2008 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-16
690- add auditing to pam_access, pam_limits, and pam_time
691- moved sanity testing code to check script
692
693* Mon Jan 14 2008 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-15
694- merge review fixes (#226228)
695
696* Tue Jan  8 2008 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-14
697- support for sha256 and sha512 password hashes
698- account expiry checks moved to unix_chkpwd helper
699
700* Wed Jan  2 2008 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-13
701- wildcard match support in pam_tty_audit (by Miloslav Trmač)
702
703* Thu Nov 29 2007 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-12
704- add pam_tty_audit module (#244352) - written by Miloslav Trmač
705
706* Wed Nov  7 2007 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-11
707- add substack support
708
709* Tue Sep 25 2007 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-10
710- update db4 to 4.6.19 (#274661)
711
712* Fri Sep 21 2007 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-9
713- do not preserve contexts when copying skel and other namespace.init
714  fixes (#298941)
715- do not free memory sent to putenv (#231698)
716
717* Wed Sep 19 2007 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-8
718- add pam_selinux_permit module
719- pam_succeed_if: fix in operator (#295151)
720
721* Tue Sep 18 2007 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-7
722- when SELinux enabled always run the helper binary instead of
723  direct shadow access (#293181)
724
725* Fri Aug 24 2007 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-6
726- do not ask for blank password when SELinux confined (#254044)
727- initialize homedirs in namespace init script (original patch by dwalsh)
728
729* Wed Aug 22 2007 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-5
730- most devices are now handled by HAL and not pam_console (patch by davidz)
731- license tag fix
732- multifunction scanner device support (#251468)
733
734* Mon Aug 13 2007 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-4
735- fix auth regression when uid != 0 from previous build (#251804)
736
737* Mon Aug  6 2007 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-3
738- updated db4 to 4.6.18 (#249740)
739- added user and new instance parameters to namespace init
740- document the new features of pam_namespace
741- do not log an audit error when uid != 0 (#249870)
742
743* Wed Jul 25 2007 Jeremy Katz <katzj@redhat.com> - 0.99.8.1-2
744- rebuild for toolchain bug
745
746* Mon Jul 23 2007 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-1
747- upgrade to latest upstream version
748- add some firewire devices to default console perms (#240770)
749
750* Thu Apr 26 2007 Tomas Mraz <tmraz@redhat.com> 0.99.7.1-6
751- pam_namespace: better document behavior on failure (#237249)
752- pam_unix: split out passwd change to a new helper binary (#236316)
753- pam_namespace: add support for temporary logons (#241226)
754
755* Fri Apr 13 2007 Tomas Mraz <tmraz@redhat.com> 0.99.7.1-5
756- pam_selinux: improve context change auditing (#234781)
757- pam_namespace: fix parsing config file with unknown users (#234513)
758
759* Fri Mar 23 2007 Tomas Mraz <tmraz@redhat.com> 0.99.7.1-4
760- pam_console: always decrement use count (#230823)
761- pam_namespace: use raw context for poly dir name (#227345)
762- pam_namespace: truncate long poly dir name (append hash) (#230120)
763- we don't patch any po files anymore
764
765* Wed Feb 21 2007 Tomas Mraz <tmraz@redhat.com> 0.99.7.1-3
766- correctly relabel tty in the default case (#229542)
767- pam_unix: cleanup of bigcrypt support
768- pam_unix: allow modification of '*' passwords to root
769
770* Tue Feb  6 2007 Tomas Mraz <tmraz@redhat.com> 0.99.7.1-2
771- more X displays as consoles (#227462)
772
773* Wed Jan 24 2007 Tomas Mraz <tmraz@redhat.com> 0.99.7.1-1
774- upgrade to new upstream version resolving CVE-2007-0003
775- pam_namespace: unmount poly dir for override users
776
777* Mon Jan 22 2007 Tomas Mraz <tmraz@redhat.com> 0.99.7.0-2
778- add back min salt length requirement which was erroneously removed
779  upstream (CVE-2007-0003)
780
781* Fri Jan 19 2007 Tomas Mraz <tmraz@redhat.com> 0.99.7.0-1
782- upgrade to new upstream version
783- drop pam_stack module as it is obsolete
784- some changes to silence rpmlint
785
786* Tue Jan 16 2007 Tomas Mraz <tmraz@redhat.com> 0.99.6.2-8
787- properly include /var/log/faillog and tallylog as ghosts
788  and create them in post script (#209646)
789- update gmo files as we patch some po files (#218271)
790- add use_current_range option to pam_selinux (#220487)
791- improve the role selection in pam_selinux
792- remove shortcut on Password: in ja locale (#218271)
793- revert to old euid and not ruid when setting euid in pam_keyinit (#219486)
794- rename selinux-namespace patch to namespace-level
795
796* Fri Dec 1 2006 Dan Walsh <dwalsh@redhat.com> 0.99.6.2-7
797- fix selection of role
798
799* Fri Dec 1 2006 Dan Walsh <dwalsh@redhat.com> 0.99.6.2-6
800- add possibility to pam_namespace to only change MLS component
801- Resolves: Bug #216184
802
803* Thu Nov 30 2006 Tomas Mraz <tmraz@redhat.com> 0.99.6.2-5
804- add select-context option to pam_selinux (#213812)
805- autoreconf won't work with autoconf-2.61 as configure.in is not yet adjusted
806  for it
807
808* Mon Nov 13 2006 Tomas Mraz <tmraz@redhat.com> 0.99.6.2-4
809- update internal db4 to 4.5.20 version
810- move setgid before setuid in pam_keyinit (#212329)
811- make username check in pam_unix consistent with useradd (#212153)
812
813* Tue Oct 24 2006 Tomas Mraz <tmraz@redhat.com> 0.99.6.2-3.3
814- don't overflow a buffer in pam_namespace (#211989)
815
816* Mon Oct 16 2006 Tomas Mraz <tmraz@redhat.com> 0.99.6.2-3.2
817- /var/log/faillog and tallylog must be config(noreplace)
818
819* Fri Oct 13 2006 Tomas Mraz <tmraz@redhat.com> 0.99.6.2-3.1
820- preserve effective uid in namespace.init script (LSPP for newrole)
821- include /var/log/faillog and tallylog to filelist (#209646)
822- add ids to .xml docs so the generated html is always the same (#210569)
823
824* Thu Sep 28 2006 Tomas Mraz <tmraz@redhat.com> 0.99.6.2-3
825- add pam_namespace option no_unmount_on_close, required for newrole
826
827* Mon Sep  4 2006 Tomas Mraz <tmraz@redhat.com> 0.99.6.2-2
828- silence pam_succeed_if in default system-auth (#205067)
829- round the pam_timestamp_check sleep up to wake up at the start of the
830  wallclock second (#205068)
831
832* Thu Aug 31 2006 Tomas Mraz <tmraz@redhat.com> 0.99.6.2-1
833- upgrade to new upstream version, as there are mostly bugfixes except
834  improved documentation
835- add support for session and password service for pam_access and
836  pam_succeed_if
837- system-auth: skip session pam_unix for crond service
838
839* Thu Aug 10 2006 Dan Walsh <dwalsh@redhat.com> 0.99.5.0-8
840- Add new setkeycreatecon call to pam_selinux to make sure keyring has correct context
841
842* Thu Aug 10 2006 Tomas Mraz <tmraz@redhat.com> 0.99.5.0-7
843- revoke keyrings properly when pam_keyinit called as root (#201048)
844- pam_succeed_if should return PAM_USER_UNKNOWN when getpwnam fails (#197748)
845
846* Wed Aug  2 2006 Tomas Mraz <tmraz@redhat.com> 0.99.5.0-6
847- revoke keyrings properly when pam_keyinit called more than once (#201048)
848  patch by David Howells
849
850* Fri Jul 21 2006 Tomas Mraz <tmraz@redhat.com> 0.99.5.0-5
851- don't log pam_keyinit debug messages by default (#199783)
852
853* Fri Jul 21 2006 Tomas Mraz <tmraz@redhat.com> 0.99.5.0-4
854- drop ainit from console.handlers (#199561)
855
856* Mon Jul 17 2006 Tomas Mraz <tmraz@redhat.com> 0.99.5.0-3
857- don't report error in pam_selinux for nonexistent tty (#188722)
858- add pam_keyinit to the default system-auth file (#198623)
859
860* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.99.5.0-2.1
861- rebuild
862
863* Mon Jul  3 2006 Tomas Mraz <tmraz@redhat.com> 0.99.5.0-2
864- fixed network match in pam_access (patch by Dan Yefimov)
865
866* Fri Jun 30 2006 Tomas Mraz <tmraz@redhat.com> 0.99.5.0-1
867- updated to a new upstream release
868- added service as value to be matched and list matching to
869  pam_succeed_if
870- namespace.init was missing from EXTRA_DIST
871
872* Thu Jun  8 2006 Tomas Mraz <tmraz@redhat.com> 0.99.4.0-5
873- updated pam_namespace with latest patch by Janak Desai
874- merged pam_namespace patches
875- added buildrequires libtool
876- fixed a few rpmlint warnings
877
878* Wed May 24 2006 Tomas Mraz <tmraz@redhat.com> 0.99.4.0-4
879- actually don't link to libssl as it is not used (#191915)
880
881* Wed May 17 2006 Tomas Mraz <tmraz@redhat.com> 0.99.4.0-3
882- use md5 implementation from pam_unix in pam_namespace
883- pam_namespace should call setexeccon only when selinux is enabled
884
885* Tue May 16 2006 Tomas Mraz <tmraz@redhat.com> 0.99.4.0-2
886- pam_console_apply shouldn't access /var when called with -r (#191401)
887- actually apply the large-uid patch
888- don't build hmactest in pam_timestamp so openssl-devel is not required
889- add missing buildrequires (#191915)
890
891* Wed May 10 2006 Tomas Mraz <tmraz@redhat.com> 0.99.4.0-1
892- upgrade to new upstream version
893- make pam_console_apply not dependent on glib
894- support large uids in pam_tally, pam_tally2
895
896* Thu May  4 2006 Tomas Mraz <tmraz@redhat.com> 0.99.3.0-5
897- the namespace instance init script is now in /etc/security (#190148)
898- pam_namespace: added missing braces (#190026)
899- pam_tally(2): never call fclose twice on the same FILE (from upstream)
900
901* Wed Apr 26 2006 Tomas Mraz <tmraz@redhat.com> 0.99.3.0-4
902- fixed console device class for irda (#189966)
903- make pam_console_apply fail gracefully when a class is missing
904
905* Tue Apr 25 2006 Tomas Mraz <tmraz@redhat.com> 0.99.3.0-3
906- added pam_namespace module written by Janak Desai (per-user /tmp
907support)
908- new pam-redhat modules version
909
910* Fri Feb 24 2006 Tomas Mraz <tmraz@redhat.com> 0.99.3.0-2
911- added try_first_pass option to pam_cracklib
912- use try_first_pass for pam_unix and pam_cracklib in
913  system-auth (#182350)
914
915* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.99.3.0-1.2
916- bump again for double-long bug on ppc(64)
917
918* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.99.3.0-1.1
919- rebuilt for new gcc4.1 snapshot and glibc changes
920
921* Fri Feb  3 2006 Tomas Mraz <tmraz@redhat.com> 0.99.3.0-1
922- new upstream version
923- updated db4 to 4.3.29
924- added module pam_tally2 with auditing support
925- added manual pages for system-auth and config-util (#179584)
926
927* Tue Jan  3 2006 Tomas Mraz <tmraz@redhat.com> 0.99.2.1-3
928- remove 'initscripts' dependency (#176508)
929- update pam-redhat modules, merged patches
930
931* Fri Dec 16 2005 Tomas Mraz <tmraz@redhat.com> 0.99.2.1-2
932- fix dangling symlinks in -devel (#175929)
933- link libaudit only where necessary
934- actually compile in audit support
935
936* Thu Dec 15 2005 Tomas Mraz <tmraz@redhat.com> 0.99.2.1-1
937- support netgroup matching in pam_succeed_if
938- upgrade to new release
939- drop pam_pwdb as it was obsolete long ago
940- we don't build static libraries anymore
941
942* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
943- rebuilt
944
945* Tue Nov 15 2005 Tomas Mraz <tmraz@redhat.com> 0.80-14
946- pam_stack is deprecated - log its usage
947
948* Wed Oct 26 2005 Tomas Mraz <tmraz@redhat.com> 0.80-13
949- fixed CAN-2005-2977 unix_chkpwd should skip user verification only if
950  run as root (#168181)
951- link pam_loginuid to libaudit
952- support no tty in pam_access (#170467)
953- updated audit patch (by Steve Grubb)
954- the previous pam_selinux change was not applied properly
955- pam_xauth: look for the xauth binary in multiple directories (#171164)
956
957* Wed Oct 26 2005 Dan Walsh <dwalsh@redhat.com> 0.80-12
958- Eliminate multiple in pam_selinux
959
960* Fri Oct 14 2005 Dan Walsh <dwalsh@redhat.com> 0.80-11
961- Eliminate fail over for getseuserbyname call
962
963* Thu Oct 13 2005 Dan Walsh <dwalsh@redhat.com> 0.80-10
964- Add getseuserbyname call for SELinux MCS/MLS policy
965
966* Tue Oct  4 2005 Tomas Mraz <tmraz@redhat.com>
967- pam_console manpage fixes (#169373)
968
969* Fri Sep 30 2005 Tomas Mraz <tmraz@redhat.com> 0.80-9
970- don't include ps and pdf docs (#168823)
971- new common config file for configuration utilities
972- remove glib2 dependency (#166979)
973
974* Tue Sep 20 2005 Tomas Mraz <tmraz@redhat.com> 0.80-8
975- process limit values other than RLIMIT_NICE correctly (#168790)
976- pam_unix: always honor nis flag on password change (by Aaron Hope)
977
978* Wed Aug 24 2005 Tomas Mraz <tmraz@redhat.com> 0.80-7
979- don't fail in audit code when audit is not compiled in
980  on the newest kernels (#166422)
981
982* Mon Aug 01 2005 Tomas Mraz <tmraz@redhat.com> 0.80-6
983- add option to pam_loginuid to require auditd
984 
985* Fri Jul 29 2005 Tomas Mraz <tmraz@redhat.com> 0.80-5
986- fix NULL dereference in pam_userdb (#164418)
987
988* Tue Jul 26 2005 Tomas Mraz <tmraz@redhat.com> 0.80-4
989- fix 64bit bug in pam_pwdb
990- don't crash in pam_unix if pam_get_data fail
991
992* Fri Jul 22 2005 Tomas Mraz <tmraz@redhat.com> 0.80-3
993- more pam_selinux permissive fixes (Dan Walsh)
994- make binaries PIE (#158938)
995
996* Mon Jul 18 2005 Tomas Mraz <tmraz@redhat.com> 0.80-2
997- fixed module tests so the pam doesn't require itself to build (#163502)
998- added buildprereq for building the documentation (#163503)
999- relaxed permissions of binaries (u+w)
1000
1001* Thu Jul 14 2005 Tomas Mraz <tmraz@redhat.com> 0.80-1
1002- upgrade to new upstream sources
1003- removed obsolete patches
1004- pam_selinux module shouldn't fail on broken configs unless
1005  policy is set to enforcing (Dan Walsh)
1006
1007* Tue Jun 21 2005 Tomas Mraz <tmraz@redhat.com> 0.79-11
1008- update pam audit patch
1009- add support for new limits in kernel-2.6.12 (#157050)
1010
1011* Thu Jun  9 2005 Tomas Mraz <tmraz@redhat.com> 0.79-10
1012- add the Requires dependency on audit-libs (#159885)
1013- pam_loginuid shouldn't report error when /proc/self/loginuid
1014  is missing (#159974)
1015
1016* Fri May 20 2005 Tomas Mraz <tmraz@redhat.com> 0.79-9
1017- update the pam audit patch to support newest audit library,
1018  audit also pam_setcred calls (Steve Grubb)
1019- don't use the audit_fd as global static variable
1020- don't unset the XAUTHORITY when target user is root
1021
1022* Mon May  2 2005 Tomas Mraz <tmraz@redhat.com> 0.79-8
1023- pam_console: support loading .perms files in the console.perms.d (#156069)
1024
1025* Tue Apr 26 2005 Tomas Mraz <tmraz@redhat.com> 0.79-7
1026- pam_xauth: unset the XAUTHORITY variable on error, fix
1027  potential memory leaks
1028- modify path to IDE floppy devices in console.perms (#155560)
1029
1030* Sat Apr 16 2005 Steve Grubb <sgrubb@redhat.com> 0.79-6
1031- Adjusted pam audit patch to make exception for ECONNREFUSED
1032
1033* Tue Apr 12 2005 Tomas Mraz <tmraz@redhat.com> 0.79-5
1034- added auditing patch by Steve Grubb
1035- added cleanup patches for bugs found by Steve Grubb
1036- don't clear the shadow option of pam_unix if nis option used
1037
1038* Fri Apr  8 2005 Tomas Mraz <tmraz@redhat.com> 0.79-4
1039- #150537 - flush input first then write the prompt
1040
1041* Thu Apr  7 2005 Tomas Mraz <tmraz@redhat.com> 0.79-3
1042- make pam_unix LSB 2.0 compliant even when SELinux enabled
1043- #88127 - change both local and NIS passwords to keep them in sync,
1044  also fix a regression in passwd functionality on NIS master server
1045
1046* Tue Apr  5 2005 Tomas Mraz <tmraz@redhat.com>
1047- #153711 fix wrong logging in pam_selinux when restoring tty label
1048
1049* Sun Apr  3 2005 Tomas Mraz <tmraz@redhat.com> 0.79-2
1050- fix NULL deref in pam_tally when it's used in account phase
1051
1052* Thu Mar 31 2005 Tomas Mraz <tmraz@redhat.com> 0.79-1
1053- upgrade to the new upstream release
1054- moved pam_loginuid to pam-redhat repository
1055
1056* Wed Mar 23 2005 Tomas Mraz <tmraz@redhat.com> 0.78-9
1057- fix wrong logging in pam_console handlers
1058- add executing ainit handler for alsa sound dmix
1059- #147879, #112777 - change permissions for dri devices
1060
1061* Fri Mar 18 2005 Tomas Mraz <tmraz@redhat.com> 0.78-8
1062- remove ownership and permissions handling from pam_console call
1063  pam_console_apply as a handler instead
1064
1065* Mon Mar 14 2005 Tomas Mraz <tmraz@redhat.com> 0.78-7
1066- add pam_loginuid module for setting the the login uid for auditing purposes
1067  (by Steve Grubb)
1068
1069* Thu Mar 10 2005 Tomas Mraz <tmraz@redhat.com> 0.78-6
1070- add functionality for running handler executables from pam_console
1071  when console lock was obtained/lost
1072- removed patches merged to pam-redhat
1073
1074* Tue Mar  1 2005 Tomas Mraz <tmraz@redhat.com> 0.78-5
1075- echo why tests failed when rebuilding
1076- fixed some warnings and errors in pam_console for gcc4 build
1077- improved parsing pam_console config file
1078
1079* Mon Feb 21 2005 Tomas Mraz <tmraz@redhat.com>
1080- don't log garbage in pam_console_apply (#147879)
1081
1082* Tue Jan 18 2005 Tomas Mraz <tmraz@redhat.com>
1083- don't require exact db4 version only conflict with incompatible one
1084
1085* Wed Jan 12 2005 Tomas Mraz <tmraz@redhat.com> 0.78-4
1086- updated pam-redhat from elvis CVS
1087- removed obsolete patches
1088
1089* Mon Jan  3 2005 Jeff Johnson <jbj@redhat.com> 0.78-3
1090- depend on db-4.3.27, not db-4.3.21.
1091
1092* Thu Nov 25 2004 Tomas Mraz <tmraz@redhat.com> 0.78-2
1093- add argument to pam_console_apply to restrict its work to specified files
1094
1095* Tue Nov 23 2004 Tomas Mraz <tmraz@redhat.com> 0.78-1
1096- update to Linux-PAM-0.78
1097- #140451 parse passwd entries correctly and test for failure
1098- #137802 allow using pam_console for authentication
1099
1100* Fri Nov 12 2004 Jeff Johnson <jbj@jbj.org> 0.77-67
1101- rebuild against db-4.3.21.
1102
1103* Thu Nov 11 2004 Tomas Mraz <tmraz@redhat.com> 0.77-66
1104- #77646 log failures when renaming the files when changing password
1105- Log failure on missing /etc/security/opasswd when remember option is present
1106
1107* Wed Nov 10 2004 Tomas Mraz <tmraz@redhat.com>
1108- #87628 pam_timestamp remembers authorization after logout
1109- #116956 fixed memory leaks in pam_stack
1110
1111* Wed Oct 20 2004 Tomas Mraz <tmraz@redhat.com> 0.77-65
1112- #74062 modify the pwd-lock patch to remove NIS passwd changing deadlock
1113
1114* Wed Oct 20 2004 Tomas Mraz <tmraz@redhat.com> 0.77-64
1115- #134941 pam_console should check X11 socket only on login
1116
1117* Tue Oct 19 2004 Tomas Mraz <tmraz@redhat.com> 0.77-63
1118- Fix checking of group %%group syntax in pam_limits
1119- Drop fencepost patch as it was already fixed
1120  by upstream change from 0.75 to 0.77
1121- Fix brokenshadow patch
1122
1123* Mon Oct 11 2004 Tomas Mraz <tmraz@redhat.com> 0.77-62
1124- Added bluetooth, raw1394 and flash to console.perms
1125- pam_console manpage fix
1126
1127* Mon Oct 11 2004 Tomas Mraz <tmraz@redhat.com> 0.77-61
1128- #129328 pam_env shouldn't abort on missing /etc/environment
1129- #126985 pam_stack should always copy the conversation function
1130- #127524 add /etc/security/opasswd to files
1131
1132* Tue Sep 28 2004 Phil Knirsch <pknirsch@redhat.com> 0.77-60
1133- Drop last patch again, fixed now correctly elsewhere
1134
1135* Thu Sep 23 2004 Phil Knirsch <pknirsch@redhat.com> 0.77-59
1136- Fixed bug in pam_env where wrong initializer was used
1137
1138* Fri Sep 17 2004 Dan Walsh <dwalsh@redhat.com> 0.77-58
1139- rebuild selinux patch using checkPasswdAccess
1140
1141* Mon Sep 13 2004 Jindrich Novy <jnovy@redhat.com>
1142- rebuilt
1143
1144* Mon Sep 13 2004 Tomas Mraz <tmraz@redhat.com> 0.77-56
1145- #75454 fixed locking when changing password
1146- #127054
1147- #125653 removed unnecessary getgrouplist call
1148- #124979 added quiet option to pam_succeed_if
1149
1150* Mon Aug 30 2004 Warren Togami <wtogami@redhat.com> 0.77-55
1151- #126024 /dev/pmu console perms
1152
1153* Wed Aug 4 2004 Dan Walsh <dwalsh@redhat.com> 0.77-54
1154- Move pam_console.lock to /var/run/console/
1155
1156* Thu Jul 29 2004 Dan Walsh <dwalsh@redhat.com> 0.77-53
1157- Close fd[1] before pam_modutilread so that unix_verify will complete
1158
1159* Tue Jul 27 2004 Alan Cox <alan@redhat.com> 0.77-52
1160- First chunk of Steve Grubb's resource leak and other fixes
1161
1162* Tue Jul 27 2004 Alan Cox <alan@redhat.com> 0.77-51
1163- Fixed build testing of modules
1164- Fixed dependancies
1165
1166* Tue Jul 20 2004 Dan Walsh <dwalsh@redhat.com> 0.77-50
1167- Change unix_chkpwd to return pam error codes
1168
1169* Sat Jul 10 2004 Alan Cox <alan@redhat.com>
1170- Fixed the pam glib2 dependancy issue
1171
1172* Mon Jun 21 2004 Alan Cox <alan@redhat.com>
1173- Fixed the pam_limits fencepost error (#79989) since nobody seems to
1174  be doing it
1175
1176* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
1177- rebuilt
1178
1179* Wed Jun 9 2004 Dan Walsh <dwalsh@redhat.com> 0.77-45
1180- Add requires libselinux > 1.8
1181
1182* Thu Jun 3 2004 Dan Walsh <dwalsh@redhat.com> 0.77-44
1183- Add MLS Support to selinux patch
1184
1185* Wed Jun 2 2004 Dan Walsh <dwalsh@redhat.com> 0.77-43
1186- Modify pam_selinux to use open and close param
1187
1188* Fri May 28 2004 Dan Walsh <dwalsh@redhat.com> 0.77-42
1189- Split pam module into two parts open and close
1190
1191* Tue May 18 2004 Phil Knirsch <pknirsch@redhat.com> 0.77-41
1192- Fixed 64bit segfault in pam_succeed_if module.
1193
1194* Wed Apr 14 2004 Dan Walsh <dwalsh@redhat.com> 0.77-40
1195- Apply changes from audit.
1196
1197* Mon Apr 12 2004 Dan Walsh <dwalsh@redhat.com> 0.77-39
1198- Change to only report failure on relabel if debug
1199
1200* Wed Mar 3 2004 Dan Walsh <dwalsh@redhat.com> 0.77-38
1201- Fix error handling of pam_unix
1202
1203* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
1204- rebuilt
1205
1206* Thu Feb 26 2004 Dan Walsh <dwalsh@redhat.com> 0.77-36
1207- fix tty handling
1208
1209* Thu Feb 26 2004 Dan Walsh <dwalsh@redhat.com> 0.77-35
1210- remove tty closing and opening from pam_selinux, it does not work.
1211
1212* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
1213- rebuilt
1214
1215* Thu Feb 12 2004 Nalin Dahyabhai <nalin@redhat.com>
1216- pam_unix: also log successful password changes when using shadowed passwords
1217
1218* Tue Feb 10 2004 Dan Walsh <dwalsh@redhat.com> 0.77-33
1219- close and reopen terminal after changing context.
1220
1221* Thu Feb 5 2004 Dan Walsh <dwalsh@redhat.com> 0.77-32
1222- Check for valid tty
1223
1224* Tue Feb 3 2004 Dan Walsh <dwalsh@redhat.com> 0.77-31
1225- Check for multiple > 1
1226
1227* Mon Feb 2 2004 Dan Walsh <dwalsh@redhat.com> 0.77-30
1228- fix is_selinux_enabled call for pam_rootok
1229
1230* Wed Jan 28 2004 Dan Walsh <dwalsh@redhat.com> 0.77-29
1231- More fixes to pam_selinux,pam_rootok
1232
1233* Wed Jan 28 2004 Dan Walsh <dwalsh@redhat.com> 0.77-28
1234- turn on selinux
1235
1236* Wed Jan 28 2004 Dan Walsh <dwalsh@redhat.com> 0.77-27
1237- Fix rootok check.
1238
1239* Mon Jan 26 2004 Dan Walsh <dwalsh@redhat.com> 0.77-26
1240- fix is_selinux_enabled call
1241
1242* Sun Jan 25 2004 Dan Walsh <dwalsh@redhat.com> 0.77-25
1243- Check if ROOTOK for SELinux
1244
1245* Thu Jan 15 2004 Dan Walsh <dwalsh@redhat.com> 0.77-24
1246- Fix tty handling for pts in pam_selinux
1247
1248* Thu Jan 15 2004 Dan Walsh <dwalsh@redhat.com> 0.77-23
1249- Need to add qualifier context for sudo situation
1250
1251* Thu Jan 15 2004 Dan Walsh <dwalsh@redhat.com> 0.77-22
1252- Fix pam_selinux to use prevcon instead of pam_user so it will work for su.
1253
1254* Fri Dec 12 2003 Bill Nottingham <notting@redhat.com> 0.77-21.sel
1255- add alsa devs to console.perms
1256
1257* Thu Dec 11 2003 Jeff Johnson <jbj@jbj.org> 0.77-20.sel
1258- rebuild with db-4.2.52.
1259- build db4 in build_unix, not dist.
1260
1261* Wed Nov 26 2003 Dan Walsh <dwalsh@redhat.com> 0.77-19.sel
1262- Change unix_chkpwd to handle unix_passwd and unix_acct
1263- This eliminates the need for pam modules to have read/write access to /etc/shadow.
1264
1265* Thu Nov 20 2003 Dan Walsh <dwalsh@redhat.com> 0.77-18.sel
1266- Cleanup unix_chkpwd
1267
1268* Mon Nov 03 2003 Dan Walsh <dwalsh@redhat.com> 0.77-17.sel
1269- Fix tty handling
1270- Add back multiple handling
1271
1272* Mon Oct 27 2003 Dan Walsh <dwalsh@redhat.com> 0.77-16.sel
1273- Remove Multiple from man page of pam_selinux
1274
1275* Thu Oct 23 2003 Nalin Dahyabhai <nalin@redhat.com> 0.77-15
1276- don't install _pam_aconf.h -- apps don't use it, other PAM headers which
1277  are installed don't use it, and its contents may be different for arches
1278  on a multilib system
1279- check for linkage problems in modules at %%install-time (kill #107093 dead)
1280- add buildprereq on flex (#101563)
1281
1282* Wed Oct 22 2003 Nalin Dahyabhai <nalin@redhat.com>
1283- make pam_pwdb.so link with libnsl again so that it loads (#107093)
1284- remove now-bogus buildprereq on db4-devel (we use a bundled copy for
1285  pam_userdb to avoid symbol collisions with other db libraries in apps)
1286
1287* Mon Oct 20 2003 Dan Walsh <dwalsh@redhat.com> 0.77-14.sel
1288- Add Russell Coker patch to handle /dev/pty
1289
1290* Fri Oct 17 2003 Dan Walsh <dwalsh@redhat.com> 0.77-13.sel
1291- Turn on Selinux
1292
1293* Fri Oct 17 2003 Dan Walsh <dwalsh@redhat.com> 0.77-12
1294- Fix pam_timestamp to work when 0 seconds have elapsed
1295
1296* Mon Oct 6 2003 Dan Walsh <dwalsh@redhat.com> 0.77-11
1297- Turn off selinux
1298
1299* Thu Sep 25 2003 Dan Walsh <dwalsh@redhat.com> 0.77-10.sel
1300- Turn on Selinux and remove multiple choice of context. 
1301
1302* Wed Sep 24 2003 Dan Walsh <dwalsh@redhat.com> 0.77-10
1303- Turn off selinux
1304
1305* Wed Sep 24 2003 Dan Walsh <dwalsh@redhat.com> 0.77-9.sel
1306- Add Russell's patch to check password
1307
1308* Wed Sep 17 2003 Dan Walsh <dwalsh@redhat.com> 0.77-8.sel
1309- handle ttys correctly in pam_selinux
1310
1311* Fri Sep 05 2003 Dan Walsh <dwalsh@redhat.com> 0.77-7.sel
1312- Clean up memory problems and fix tty handling.
1313
1314* Mon Jul 28 2003 Dan Walsh <dwalsh@redhat.com> 0.77-6
1315- Add manual context selection to pam_selinux
1316
1317* Mon Jul 28 2003 Dan Walsh <dwalsh@redhat.com> 0.77-5
1318- Add pam_selinux
1319
1320* Mon Jul 28 2003 Dan Walsh <dwalsh@redhat.com> 0.77-4
1321- Add SELinux support
1322
1323* Thu Jul 24 2003 Nalin Dahyabhai <nalin@redhat.com> 0.77-3
1324- pam_postgresok: add
1325- pam_xauth: add "targetuser" argument
1326
1327* Tue Jul 22 2003 Nalin Dahyabhai <nalin@redhat.com>
1328- pam_succeed_if: fix thinko in argument parsing which would walk past the
1329  end of the argument list
1330
1331* Wed Jul  9 2003 Nalin Dahyabhai <nalin@redhat.com> 0.77-2
1332- reapply:
1333  - set handler for SIGCHLD to SIG_DFL around *_chkpwd, not SIG_IGN
1334
1335* Mon Jul  7 2003 Nalin Dahyabhai <nalin@redhat.com> 0.77-1
1336- pam_timestamp: fail if the key file doesn't contain enough data
1337
1338* Thu Jul  3 2003 Nalin Dahyabhai <nalin@redhat.com> 0.77-0
1339- update to 0.77 upstream release
1340  - pam_limits: limits now affect root as well
1341  - pam_nologin: returns PAM_IGNORE instead of PAM_SUCCESS unless "successok"
1342    is given as an argument
1343  - pam_userdb: correctly return PAM_AUTH_ERR instead of PAM_USER_UNKNOWN when
1344    invoked with the "key_only" argument and the database has an entry of the
1345    form "user-<wrongpassword>"
1346- use a bundled libdb for pam_userdb.so because the system copy uses threads,
1347  and demand-loading a shared library which uses threads into an application
1348  which doesn't is a Very Bad Idea
1349
1350* Thu Jul  3 2003 Nalin Dahyabhai <nalin@redhat.com>
1351- pam_timestamp: use a message authentication code to validate timestamp files
1352
1353* Mon Jun 30 2003 Nalin Dahyabhai <nalin@redhat.com> 0.75-48.1
1354- rebuild
1355
1356* Mon Jun  9 2003 Nalin Dahyabhai <nalin@redhat.com> 0.75-49
1357- modify calls to getlogin() to check the directory of the current TTY before
1358  searching for an entry in the utmp/utmpx file (#98020, #98826, CAN-2003-0388)
1359
1360* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
1361- rebuilt
1362
1363* Mon Feb 10 2003 Bill Nottingham <notting@redhat.com> 0.75-48
1364- set handler for SIGCHLD to SIG_DFL around *_chkpwd, not SIG_IGN
1365
1366* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 0.75-47
1367- rebuilt
1368
1369* Tue Dec 17 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-46
1370- pam_xauth: reintroduce ACL support, per the original white paper
1371- pam_xauth: default root's export ACL to none instead of everyone
1372
1373* Mon Dec  2 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-45
1374- create /lib/security, even if it isn't /%%{_lib}/security, because we
1375  can't locate /lib/security/$ISA without it (noted by Arnd Bergmann)
1376- clear out the duplicate docs directory created during %%install
1377
1378* Thu Nov 21 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-44
1379- fix syntax errors in pam_console's yacc parser which newer bison chokes on
1380- forcibly set FAKEROOT at make install time
1381
1382* Tue Oct 22 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-43
1383- patch to interpret $ISA in case the fist module load attempt fails
1384- use $ISA in default configs
1385
1386* Fri Oct 04 2002 Elliot Lee <sopwith@redhat.com> 0.75-42
1387- Since cracklib-dicts location will not be correctly detected without
1388  that package being installed, add buildreq for cracklib-dicts.
1389- Add patch57: makes configure use $LIBNAME when searching for cracklib
1390  dicts, and error out if not found.
1391
1392* Thu Sep 12 2002 Than Ngo <than@redhat.com> 0.75-41.1
1393- Fixed pam config files
1394
1395* Wed Sep 11 2002 Than Ngo <than@redhat.com> 0.75-41
1396- Added fix to install libs in correct directory on 64bit machine
1397
1398* Fri Aug  2 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-40
1399- pam_timestamp_check: check that stdio descriptors are open before we're
1400  invoked
1401- add missing chroot.conf
1402
1403* Mon Jul 29 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-39
1404- pam_timestamp: sundry fixes, use "unknown" as the tty when none is found
1405
1406* Thu Jun 27 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-38
1407- pam_timestamp_check: be as smart about figuring out the tty as the module is
1408
1409* Wed Jun 19 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-37
1410- pam_timestamp_check: remove extra unlink() call spotted by Havoc
1411
1412* Mon Jun 17 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-36
1413- pam_timestamp: chown intermediate directories when creating them
1414- pam_timestamp_check: add -d flag to poll
1415
1416* Thu May 23 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-35
1417- pam_timestamp: add some sanity checks
1418- pam_timestamp_check: add
1419
1420* Wed May 22 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-34
1421- pam_timestamp: add a 'verbose' option
1422
1423* Thu May 16 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-33
1424- rebuild with db4
1425- just bundle install-sh into the source package
1426
1427* Tue Apr  9 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-32
1428- pam_unix: be more compatible with AIX-style shadowing (#19236)
1429
1430* Thu Mar 28 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-31
1431- libpam_misc: fix possible infinite loop in misc_conv (#62195)
1432- pam_xauth: fix cases where DISPLAY is "localhost:screen" and the xauth
1433  key is actually stored using the system's hostname (#61524)
1434
1435* Mon Mar 25 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-30
1436- rebuild
1437
1438* Mon Mar 25 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-29
1439- rebuild
1440
1441* Mon Mar 11 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-28
1442- include the pwdb config file
1443
1444* Fri Mar  1 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-27
1445- adjust the pwdb-static patch to build pam_radius correctly (#59408)
1446
1447* Fri Mar  1 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-26
1448- change the db4-devel build dependency to db3-devel
1449
1450* Thu Feb 21 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-25
1451- rebuild
1452
1453* Fri Feb  8 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-24
1454- pam_unix: log successful password changes
1455- remove pam_timestamp
1456
1457* Thu Feb  7 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-23
1458- fix pwdb embedding
1459- add pam_timestamp
1460
1461* Thu Jan 31 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-22
1462- swallow up pwdb 0.61.1 for building pam_pwdb
1463
1464* Wed Jan 23 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-21
1465- pam_userdb: build with db4 instead of db3
1466
1467* Thu Nov 22 2001 Nalin Dahyabhai <nalin@redhat.com> 0.75-20
1468- pam_stack: fix some memory leaks (reported by Fernando Trias)
1469- pam_chroot: integrate Owl patch to report the more common causes of failures
1470
1471* Fri Nov  9 2001 Nalin Dahyabhai <nalin@redhat.com> 0.75-19
1472- fix a bug in the getpwnam_r wrapper which sometimes resulted in false
1473  positives for non-existent users
1474
1475* Wed Nov  7 2001 Nalin Dahyabhai <nalin@redhat.com> 0.75-18
1476- include libpamc in the pam package (#55651)
1477
1478* Fri Nov  2 2001 Nalin Dahyabhai <nalin@redhat.com> 0.75-17
1479- pam_xauth: don't free a string after passing it to putenv()
1480
1481* Wed Oct 24 2001 Nalin Dahyabhai <nalin@redhat.com> 0.75-16
1482- pam_xauth: always return PAM_SUCCESS or PAM_SESSION_ERR instead of PAM_IGNORE,
1483  matching the previous behavior (libpam treats PAM_IGNORE from a single module
1484  in a stack as a session error, leading to false error messages if we just
1485  return PAM_IGNORE for all cases)
1486
1487* Mon Oct 22 2001 Nalin Dahyabhai <nalin@redhat.com> 0.75-15
1488- reorder patches so that the reentrancy patch is applied last -- we never
1489  came to a consensus on how to guard against the bugs in calling applications
1490  which this sort of change addresses, and having them last allows for dropping
1491  in a better strategy for addressing this later on
1492
1493* Mon Oct 15 2001 Nalin Dahyabhai <nalin@redhat.com>
1494- pam_rhosts: allow "+hostname" as a synonym for "hostname" to jive better
1495  with the hosts.equiv(5) man page
1496- use the automake install-sh instead of the autoconf install-sh, which
1497  disappeared somewhere between 2.50 and now
1498
1499* Mon Oct  8 2001 Nalin Dahyabhai <nalin@redhat.com>
1500- add pwdb as a buildprereq
1501
1502* Fri Oct  5 2001 Nalin Dahyabhai <nalin@redhat.com>
1503- pam_tally: don't try to read past the end of faillog -- it probably contains
1504  garbage, which if written into the file later on will confuse /usr/bin/faillog
1505
1506* Thu Oct  4 2001 Nalin Dahyabhai <nalin@redhat.com>
1507- pam_limits: don't just return if the user is root -- we'll want to set the
1508  priority (it could be negative to elevate root's sessions)
1509- pam_issue: fix off-by-one error allocating space for the prompt string
1510
1511* Wed Oct  3 2001 Nalin Dahyabhai <nalin@redhat.com>
1512- pam_mkhomedir: recurse into subdirectories properly
1513- pam_mkhomedir: handle symlinks
1514- pam_mkhomedir: skip over special items in the skeleton directory
1515
1516* Tue Oct  2 2001 Nalin Dahyabhai <nalin@redhat.com>
1517- add cracklib as a buildprereq
1518- pam_wheel: don't ignore out if the user is attempting to switch to a
1519  unprivileged user (this lets pam_wheel do its thing when users attempt
1520  to get to system accounts or accounts of other unprivileged users)
1521
1522* Fri Sep 28 2001 Nalin Dahyabhai <nalin@redhat.com>
1523- pam_xauth: close a possible DoS due to use of dotlock-style locking in
1524  world-writable directories by relocating the temporary file to the target
1525  user's home directory
1526- general: include headers local to this tree using relative paths so that
1527  system headers for PAM won't be pulled in, in case include paths don't
1528  take care of it
1529
1530* Thu Sep 27 2001 Nalin Dahyabhai <nalin@redhat.com>
1531- pam_xauth: rewrite to skip refcounting and just use a temporary file
1532  created using mkstemp() in /tmp
1533
1534* Tue Sep 25 2001 Nalin Dahyabhai <nalin@redhat.com>
1535- pam_userdb: fix the key_only flag so that the null-terminator of the
1536  user-password string isn't expected to be part of the key in the db file,
1537  matching the behavior of db_load 3.2.9
1538
1539* Mon Sep 24 2001 Nalin Dahyabhai <nalin@redhat.com>
1540- pam_unix: use crypt() instead of bigcrypt() when salted field is less than
1541  the critical size which lets us know it was generated with bigcrypt()
1542- use a wrapper to handle ERANGE errors when calling get....._r functions:
1543  defining PAM_GETPWNAM_R and such (for getpwnam, getpwuid, getgrnam,
1544  getgrgid, and getspnam) before including _pam_macros.h will cause them
1545  to be implemented as static functions, similar to how defining PAM_SM_xxx
1546  is used to control whether or not PAM declares prototypes for certain
1547  functions
1548
1549* Mon Sep 24 2001 Nalin Dahyabhai <nalin@redhat.com> 0.75-14
1550- pam_unix: argh, compare entire pruned salt string with crypted result, always
1551
1552* Sat Sep  8 2001 Bill Nottingham <notting@redhat.com> 0.75-13
1553- ship /lib/lib{pam,pam_misc}.so for legacy package builds
1554
1555* Thu Sep  6 2001 Nalin Dahyabhai <nalin@redhat.com> 0.75-12
1556- noreplace configuration files in /etc/security
1557- pam_console: update pam_console_apply and man pages to reflect
1558  /var/lock -> /var/run move
1559
1560* Wed Sep  5 2001 Nalin Dahyabhai <nalin@redhat.com> 0.75-11
1561- pam_unix: fix the fix for #42394
1562
1563* Tue Sep  4 2001 Nalin Dahyabhai <nalin@redhat.com>
1564- modules: use getpwnam_r and friends instead of non-reentrant versions
1565- pam_console: clear generated .c and .h files in "clean" makefile target
1566
1567* Thu Aug 30 2001 Nalin Dahyabhai <nalin@redhat.com>
1568- pam_stack: perform deep copy of conversation structures
1569- include the static libpam in the -devel subpackage (#52321)
1570- move development .so and .a files to %%{_libdir}
1571- pam_unix: don't barf on empty passwords (#51846)
1572- pam_unix: redo compatibility with "hash,age" data wrt bigcrypt (#42394)
1573- console.perms: add usb camera, scanner, and rio devices (#15528)
1574- pam_cracklib: initialize all options properly (#49613)
1575
1576* Wed Aug 22 2001 Nalin Dahyabhai <nalin@redhat.com>
1577- pam_limits: don't rule out negative priorities
1578
1579* Mon Aug 13 2001 Nalin Dahyabhai <nalin@redhat.com> 0.75-10
1580- pam_xauth: fix errors due to uninitialized data structure (fix from Tse Huong
1581  Choo)
1582- pam_xauth: random cleanups
1583- pam_console: use /var/run/console instead of /var/lock/console at install-time
1584- pam_unix: fix preserving of permissions on files which are manipulated
1585
1586* Fri Aug 10 2001 Bill Nottingham <notting@redhat.com>
1587- fix segfault in pam_securetty
1588
1589* Thu Aug  9 2001 Nalin Dahyabhai <nalin@redhat.com>
1590- pam_console: use /var/run/console instead of /var/lock/console for lock files
1591- pam_issue: read the right number of bytes from the file
1592
1593* Mon Jul  9 2001 Nalin Dahyabhai <nalin@redhat.com>
1594- pam_wheel: don't error out if the group has no members, but is the user's
1595  primary GID (reported by David Vos)
1596- pam_unix: preserve permissions on files which are manipulated (#43706)
1597- pam_securetty: check if the user is the superuser before checking the tty,
1598  thereby allowing regular users access to services which don't set the
1599  PAM_TTY item (#39247)
1600- pam_access: define NIS and link with libnsl (#36864)
1601
1602* Thu Jul  5 2001 Nalin Dahyabhai <nalin@redhat.com>
1603- link libpam_misc against libpam
1604
1605* Tue Jul  3 2001 Nalin Dahyabhai <nalin@redhat.com>
1606- pam_chroot: chdir() before chroot()
1607
1608* Fri Jun 29 2001 Nalin Dahyabhai <nalin@redhat.com>
1609- pam_console: fix logic bug when changing permissions on single
1610  file and/or lists of files
1611- pam_console: return the proper error code (reported and patches
1612  for both from Frederic Crozat)
1613- change deprecated Copyright: tag in .spec file to License:
1614
1615* Mon Jun 25 2001 Nalin Dahyabhai <nalin@redhat.com>
1616- console.perms: change js* to js[0-9]*
1617- include pam_aconf.h in more modules (patches from Harald Welte)
1618
1619* Thu May 24 2001 Nalin Dahyabhai <nalin@redhat.com>
1620- console.perms: add apm_bios to the list of devices the console owner can use
1621- console.perms: add beep to the list of sound devices
1622
1623* Mon May  7 2001 Nalin Dahyabhai <nalin@redhat.com>
1624- link pam_console_apply statically with libglib (#38891)
1625
1626* Mon Apr 30 2001 Nalin Dahyabhai <nalin@redhat.com>
1627- pam_access: compare IP addresses with the terminating ".", as documented
1628  (patch from Carlo Marcelo Arenas Belon, I think) (#16505)
1629
1630* Mon Apr 23 2001 Nalin Dahyabhai <nalin@redhat.com>
1631- merge up to 0.75
1632- pam_unix: temporarily ignore SIGCHLD while running the helper
1633- pam_pwdb: temporarily ignore SIGCHLD while running the helper
1634- pam_dispatch: default to uncached behavior if the cached chain is empty
1635
1636* Fri Apr  6 2001 Nalin Dahyabhai <nalin@redhat.com>
1637- correct speling errors in various debug messages and doc files (#33494)
1638
1639* Thu Apr  5 2001 Nalin Dahyabhai <nalin@redhat.com>
1640- prereq sed, fileutils (used in %%post)
1641
1642* Wed Apr  4 2001 Nalin Dahyabhai <nalin@redhat.com>
1643- remove /dev/dri from console.perms -- XFree86 munges it, so it's outside of
1644  our control (reminder from Daryll Strauss)
1645- add /dev/3dfx to console.perms
1646
1647* Fri Mar 23 2001 Nalin Dahyabhai <nalin@redhat.com>
1648- pam_wheel: make 'trust' and 'deny' work together correctly
1649- pam_wheel: also check the user's primary gid
1650- pam_group: also initialize groups when called with PAM_REINITIALIZE_CRED
1651
1652* Tue Mar 20 2001 Nalin Dahyabhai <nalin@redhat.com>
1653- mention pam_console_apply in the see also section of the pam_console man pages
1654
1655* Fri Mar 16 2001 Nalin Dahyabhai <nalin@redhat.com>
1656- console.perms: /dev/vc/* should be a regexp, not a glob (thanks to
1657  Charles Lopes)
1658
1659* Mon Mar 12 2001 Nalin Dahyabhai <nalin@redhat.com>
1660- console.perms: /dev/cdroms/* should belong to the user, from Douglas
1661  Gilbert via Tim Waugh
1662
1663* Thu Mar  8 2001 Nalin Dahyabhai <nalin@redhat.com>
1664- pam_console_apply: muck with devices even if the mount point doesn't exist
1665
1666* Wed Mar  7 2001 Nalin Dahyabhai <nalin@redhat.com>
1667- pam_console: error out on undefined classes in pam_console config file
1668- console.perms: actually change the permissions on the new device classes
1669- pam_console: add an fstab= argument, and -f and -c flags to pam_console_apply
1670- pam_console: use g_log instead of g_critical when bailing out
1671- console.perms: logins on /dev/vc/* are also console logins, from Douglas
1672  Gilbert via Tim Waugh
1673
1674* Tue Mar  6 2001 Nalin Dahyabhai <nalin@redhat.com>
1675- add pam_console_apply
1676- /dev/pilot's usually a serial port (or a USB serial port), so revert its
1677  group to 'uucp' instead of 'tty' in console.perms
1678- change pam_console's behavior wrt directories -- directories which are
1679  mount points according to /etc/fstab are taken to be synonymous with
1680  their device special nodes, and directories which are not mount points
1681  are ignored
1682
1683* Tue Feb 27 2001 Nalin Dahyabhai <nalin@redhat.com>
1684- handle errors fork()ing in pam_xauth
1685- make the "other" config noreplace
1686
1687* Mon Feb 26 2001 Nalin Dahyabhai <nalin@redhat.com>
1688- user should own the /dev/video directory, not the non-existent /dev/v4l
1689- tweak pam_limits doc
1690
1691* Wed Feb 21 2001 Nalin Dahyabhai <nalin@redhat.com>
1692- own /etc/security
1693- be more descriptive when logging messages from pam_limits
1694- pam_listfile: remove some debugging code (#28346)
1695
1696* Mon Feb 19 2001 Nalin Dahyabhai <nalin@redhat.com>
1697- pam_lastlog: don't pass NULL to logwtmp()
1698
1699* Fri Feb 16 2001 Nalin Dahyabhai <nalin@redhat.com>
1700- pam_listfile: fix argument parser (#27773)
1701- pam_lastlog: link to libutil
1702
1703* Tue Feb 13 2001 Nalin Dahyabhai <nalin@redhat.com>
1704- pam_limits: change the documented default config file to reflect the defaults
1705- pam_limits: you should be able to log in a total of maxlogins times, not
1706  (maxlogins - 1)
1707- handle group limits on maxlogins correctly (#25690)
1708
1709* Mon Feb 12 2001 Nalin Dahyabhai <nalin@redhat.com>
1710- change the pam_xauth default maximum "system user" ID from 499 to 99 (#26343)
1711
1712* Wed Feb  7 2001 Nalin Dahyabhai <nalin@redhat.com>
1713- refresh the default system-auth file, pam_access is out
1714
1715* Mon Feb  5 2001 Nalin Dahyabhai <nalin@redhat.com>
1716- actually time out when attempting to lckpwdf() (#25889)
1717- include time.h in pam_issue (#25923)
1718- update the default system-auth to the one generated by authconfig 4.1.1
1719- handle getpw??? and getgr??? failures more gracefully (#26115)
1720- get rid of some extraneous {set,end}{pw,gr}ent() calls
1721
1722* Tue Jan 30 2001 Nalin Dahyabhai <nalin@redhat.com>
1723- overhaul pam_stack to account for abstraction libpam now provides
1724
1725* Tue Jan 23 2001 Nalin Dahyabhai <nalin@redhat.com>
1726- remove pam_radius at request of author
1727
1728* Mon Jan 22 2001 Nalin Dahyabhai <nalin@redhat.com>
1729- merge to 0.74
1730- make console.perms match perms set by MAKEDEV, and add some devfs device names
1731- add 'sed' to the buildprereq list (#24666)
1732
1733* Sun Jan 21 2001 Matt Wilson <msw@redhat.com>
1734- added "exit 0" to the end of the pre script
1735
1736* Fri Jan 19 2001 Nalin Dahyabhai <nalin@redhat.com>
1737- self-hosting fix from Guy Streeter
1738
1739* Wed Jan 17 2001 Nalin Dahyabhai <nalin@redhat.com>
1740- use gcc for LD_L to pull in intrinsic stuff on ia64
1741
1742* Fri Jan 12 2001 Nalin Dahyabhai <nalin@redhat.com>
1743- take another whack at compatibility with "hash,age" data in pam_unix (#21603)
1744
1745* Wed Jan 10 2001 Nalin Dahyabhai <nalin@redhat.com>
1746- make the -devel subpackage unconditional
1747
1748* Tue Jan  9 2001 Nalin Dahyabhai <nalin@redhat.com>
1749- merge/update to 0.73
1750
1751* Mon Dec 18 2000 Nalin Dahyabhai <nalin@redhat.com>
1752- refresh from CVS -- some weird stuff crept into pam_unix
1753
1754* Tue Dec 12 2000 Nalin Dahyabhai <nalin@redhat.com>
1755- fix handling of "nis" when changing passwords by adding the checks for the
1756  data source to the password-updating module in pam_unix
1757- add the original copyright for pam_access (fix from Michael Gerdts)
1758
1759* Thu Nov 30 2000 Nalin Dahyabhai <nalin@redhat.com>
1760- redo similar() using a distance algorithm and drop the default dif_ok to 5
1761- readd -devel
1762
1763* Wed Nov 29 2000 Nalin Dahyabhai <nalin@redhat.com>
1764- fix similar() function in pam_cracklib (#14740)
1765- fix example in access.conf (#21467)
1766- add conditional compilation for building for 6.2 (for pam_userdb)
1767- tweak post to not use USESHADOW any more
1768
1769* Tue Nov 28 2000 Nalin Dahyabhai <nalin@redhat.com>
1770- make EINVAL setting lock limits in pam_limits non-fatal, because it's a 2.4ism
1771
1772* Tue Nov 21 2000 Nalin Dahyabhai <nalin@redhat.com>
1773- revert to DB 3.1, which is what we were supposed to be using from the get-go
1774
1775* Mon Nov 20 2000 Nalin Dahyabhai <nalin@redhat.com>
1776- add RLIMIT_LOCKS to pam_limits (patch from Jes Sorensen) (#20542)
1777- link pam_userdb to Berkeley DB 2.x to match 6.2's setup correctly
1778
1779* Mon Nov  6 2000 Matt Wilson <msw@redhat.com>
1780- remove prereq on sh-utils, test ([) is built in to bash
1781
1782* Thu Oct 19 2000 Nalin Dahyabhai <nalin@redhat.com>
1783- fix the pam_userdb module breaking
1784
1785* Wed Oct 18 2000 Nalin Dahyabhai <nalin@redhat.com>
1786- fix pam_unix likeauth argument for authenticate(),setcred(),setcred()
1787
1788* Tue Oct 17 2000 Nalin Dahyabhai <nalin@redhat.com>
1789- tweak pre script to be called in all upgrade cases
1790- get pam_unix to only care about the significant pieces of passwords it checks
1791- add /usr/include/db1/db.h as a build prereq to pull in the right include
1792  files, no matter whether they're in glibc-devel or db1-devel
1793- pam_userdb.c: include db1/db.h instead of db.h
1794
1795* Wed Oct 11 2000 Nalin Dahyabhai <nalin@redhat.com>
1796- add BuildPrereq for bison (suggested by Bryan Stillwell)
1797
1798* Fri Oct  6 2000 Nalin Dahyabhai <nalin@redhat.com>
1799- patch from Dmitry V. Levin to have pam_stack propagate the PAM fail_delay
1800- roll back the README for pam_xauth to actually be the right one
1801- tweak pam_stack to use the parent's service name when calling the substack
1802
1803* Wed Oct  4 2000 Nalin Dahyabhai <nalin@redhat.com>
1804- create /etc/sysconfig/authconfig at install-time if upgrading
1805
1806* Mon Oct  2 2000 Nalin Dahyabhai <nalin@redhat.com>
1807- modify the files list to make sure #16456 stays fixed
1808- make pam_stack track PAM_AUTHTOK and PAM_OLDAUTHTOK items
1809- add pam_chroot module
1810- self-hosting fixes from the -devel split
1811- update generated docs in the tree
1812
1813* Tue Sep 12 2000 Nalin Dahyabhai <nalin@redhat.com>
1814- split off a -devel subpackage
1815- install the developer man pages
1816
1817* Sun Sep 10 2000 Bill Nottingham <notting@redhat.com>
1818- build libraries before modules
1819
1820* Wed Sep  6 2000 Nalin Dahyabhai <nalin@redhat.com>
1821- fix problems when looking for headers in /usr/include (#17236)
1822- clean up a couple of compile warnings
1823
1824* Tue Aug 22 2000 Nalin Dahyabhai <nalin@redhat.com>
1825- give users /dev/cdrom* instead of /dev/cdrom in console.perms (#16768)
1826- add nvidia control files to console.perms
1827
1828* Tue Aug 22 2000 Bill Nottingham <notting@redhat.com>
1829- add DRI devices to console.perms (#16731)
1830
1831* Thu Aug 17 2000 Nalin Dahyabhai <nalin@redhat.com>
1832- move pam_filter modules to /lib/security/pam_filter (#16111)
1833- add pam_tally's application to allow counts to be reset (#16456)
1834- move README files to the txts subdirectory
1835
1836* Mon Aug 14 2000 Nalin Dahyabhai <nalin@redhat.com>
1837- add a postun that runs ldconfig
1838- clean up logging in pam_xauth
1839
1840* Fri Aug  4 2000 Nalin Dahyabhai <nalin@redhat.com>
1841- make the tarball include the release number in its name
1842
1843* Mon Jul 31 2000 Nalin Dahyabhai <nalin@redhat.com>
1844- add a broken_shadow option to pam_unix
1845- add all module README files to the documentation list (#16456)
1846
1847* Tue Jul 25 2000 Nalin Dahyabhai <nalin@redhat.com>
1848- fix pam_stack debug and losing-track-of-the-result bug
1849
1850* Mon Jul 24 2000 Nalin Dahyabhai <nalin@redhat.com>
1851- rework pam_console's usage of syslog to actually be sane (#14646)
1852
1853* Sat Jul 22 2000 Nalin Dahyabhai <nalin@redhat.com>
1854- take the LOG_ERR flag off of some of pam_console's new messages
1855
1856* Fri Jul 21 2000 Nalin Dahyabhai <nalin@redhat.com>
1857- add pam_localuser
1858
1859* Wed Jul 12 2000 Nalin Dahyabhai <nalin@redhat.com>
1860- need to make pam_console's checking a little stronger
1861- only pass data up from pam_stack if the parent didn't already define it
1862
1863* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
1864- automatic rebuild
1865
1866* Tue Jul 11 2000 Nalin Dahyabhai <nalin@redhat.com>
1867- make pam_console's extra checks disableable
1868- simplify extra check to just check if the device owner is root
1869- add a debug log when pam_stack comes across a NULL item
1870- have pam_stack hand items up to the parent from the child
1871
1872* Mon Jul  3 2000 Nalin Dahyabhai <nalin@redhat.com>
1873- fix installation of pam_xauth man pages (#12417)
1874- forcibly strip helpers (#12430)
1875- try to make pam_console a little more discriminating
1876
1877* Mon Jun 19 2000 Nalin Dahyabhai <nalin@redhat.com>
1878- symlink libpam.so to libpam.so.%%{version}, and likewise for libpam_misc
1879- reverse order of checks in _unix_getpwnam for pam_unix
1880
1881* Wed Jun 14 2000 Preston Brown <pbrown@redhat.com>
1882- include gpmctl in pam_console
1883
1884* Mon Jun 05 2000 Nalin Dahyabhai <nalin@redhat.com>
1885- add MANDIR definition and use it when installing man pages
1886
1887* Mon Jun 05 2000 Preston Brown <pbrown@redhat.com>
1888- handle scanner and cdwriter devices in pam_console
1889
1890* Sat Jun  3 2000 Nalin Dahyabhai <nalin@redhat.com>
1891- add account management wrappers for pam_listfile, pam_nologin, pam_securetty,
1892  pam_shells, and pam_wheel
1893
1894* Thu Jun  1 2000 Nalin Dahyabhai <nalin@redhat.com>
1895- add system-auth control file
1896- let gethostname() call in pam_access.c be implicitly declared to avoid
1897  conflicting types if unistd.c declares it
1898
1899* Mon May 15 2000 Nalin Dahyabhai <nalin@redhat.com>
1900- fix problems compiling on Red Hat Linux 5.x (bug #11005)
1901
1902* Wed Apr 26 2000 Bill Nottingham <notting@redhat.com>
1903- fix size assumptions in pam_(pwdb|unix) md5 code
1904
1905* Mon Mar 20 2000 Nalin Dahyabhai <nalin@redhat.com>
1906- Add new pam_stack module.
1907- Install pwdb_chkpwd and unix_chkpwd as the current user for non-root builds
1908
1909* Sat Feb 05 2000 Nalin Dahyabhai <nalin@redhat.com>
1910- Fix pam_xauth bug #6191.
1911
1912* Thu Feb 03 2000 Elliot Lee <sopwith@redhat.com>
1913- Add a patch to accept 'pts/N' in /etc/securetty as a match for tty '5'
1914  (which is what other pieces of the system think it is). Fixes bug #7641.
1915
1916* Mon Jan 31 2000 Nalin Dahyabhai <nalin@redhat.com>
1917- argh, turn off gratuitous debugging
1918
1919* Wed Jan 19 2000 Nalin Dahyabhai <nalin@redhat.com>
1920- update to 0.72
1921- fix pam_unix password-changing bug
1922- fix pam_unix's cracklib support
1923- change package URL
1924
1925* Mon Jan 03 2000 Cristian Gafton <gafton@redhat.com>
1926- don't allow '/' on service_name
1927
1928* Thu Oct 21 1999 Cristian Gafton <gafton@redhat.com>
1929- enhance the pam_userdb module some more
1930
1931* Fri Sep 24 1999 Cristian Gafton <gafton@redhat.com>
1932- add documenatation
1933
1934* Tue Sep 21 1999 Michael K. Johnson <johnsonm@redhat.com>
1935- a tiny change to pam_console to make it not loose track of console users
1936
1937* Mon Sep 20 1999 Michael K. Johnson <johnsonm@redhat.com>
1938- a few fixes to pam_xauth to make it more robust
1939
1940* Wed Jul 14 1999 Michael K. Johnson <johnsonm@redhat.com>
1941- pam_console: added <xconsole> to manage /dev/console
1942
1943* Thu Jul 01 1999 Michael K. Johnson <johnsonm@redhat.com>
1944- pam_xauth: New refcounting implementation based on idea from Stephen Tweedie
1945
1946* Sat Apr 17 1999 Michael K. Johnson <johnsonm@redhat.com>
1947- added video4linux devices to /etc/security/console.perms
1948
1949* Fri Apr 16 1999 Michael K. Johnson <johnsonm@redhat.com>
1950- added joystick lines to /etc/security/console.perms
1951
1952* Thu Apr 15 1999 Michael K. Johnson <johnsonm@redhat.com>
1953- fixed a couple segfaults in pam_xauth uncovered by yesterday's fix...
1954
1955* Wed Apr 14 1999 Cristian Gafton <gafton@redhat.com>
1956- use gcc -shared to link the shared libs
1957
1958* Wed Apr 14 1999 Michael K. Johnson <johnsonm@redhat.com>
1959- many bug fixes in pam_xauth
1960- pam_console can now handle broken applications that do not set
1961  the PAM_TTY item.
1962
1963* Tue Apr 13 1999 Michael K. Johnson <johnsonm@redhat.com>
1964- fixed glob/regexp confusion in pam_console, added kbd and fixed fb devices
1965- added pam_xauth module
1966
1967* Sat Apr 10 1999 Cristian Gafton <gafton@redhat.com>
1968- pam_lastlog does wtmp handling now
1969
1970* Thu Apr 08 1999 Michael K. Johnson <johnsonm@redhat.com>
1971- added option parsing to pam_console
1972- added framebuffer devices to default console.perms settings
1973
1974* Wed Apr 07 1999 Cristian Gafton <gafton@redhat.com>
1975- fixed empty passwd handling in pam_pwdb
1976
1977* Mon Mar 29 1999 Michael K. Johnson <johnsonm@redhat.com>
1978- changed /dev/cdrom default user permissions back to 0600 in console.perms
1979  because some cdrom players open O_RDWR.
1980
1981* Fri Mar 26 1999 Michael K. Johnson <johnsonm@redhat.com>
1982- added /dev/jaz and /dev/zip to console.perms
1983
1984* Thu Mar 25 1999 Michael K. Johnson <johnsonm@redhat.com>
1985- changed the default user permissions for /dev/cdrom to 0400 in console.perms
1986
1987* Fri Mar 19 1999 Michael K. Johnson <johnsonm@redhat.com>
1988- fixed a few bugs in pam_console
1989
1990* Thu Mar 18 1999 Michael K. Johnson <johnsonm@redhat.com>
1991- pam_console authentication working
1992- added /etc/security/console.apps directory
1993
1994* Mon Mar 15 1999 Michael K. Johnson <johnsonm@redhat.com>
1995- added pam_console files to filelist
1996
1997* Fri Feb 12 1999 Cristian Gafton <gafton@redhat.com>
1998- upgraded to 0.66, some source cleanups
1999
2000* Mon Dec 28 1998 Cristian Gafton <gafton@redhat.com>
2001- add patch from Savochkin Andrey Vladimirovich <saw@msu.ru> for umask
2002  security risk
2003
2004* Fri Dec 18 1998 Cristian Gafton <gafton@redhat.com>
2005- upgrade to ver 0.65
2006- build the package out of internal CVS server
Note: See TracBrowser for help on using the repository browser.