/[smeserver]/rpms/e-smith-base/sme7/e-smith-base-4.18.0-pamtemplate.patch
ViewVC logotype

Annotation of /rpms/e-smith-base/sme7/e-smith-base-4.18.0-pamtemplate.patch

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (hide annotations) (download)
Wed Mar 26 17:01:38 2008 UTC (16 years, 3 months ago) by slords
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
FILE REMOVED
* Wed Mar 26 2008 Shad L. Lords <slords@mail.com> 4.18.1-2
- Fix gettext strings returned by password checks [SME: 4104]

1 slords 1.1 diff -Nur -x '*.orig' -x '*.rej' e-smith-base-4.18.0/createlinks mezzanine_patched_e-smith-base-4.18.0/createlinks
2     --- e-smith-base-4.18.0/createlinks 2007-03-19 15:21:59.000000000 -0600
3     +++ mezzanine_patched_e-smith-base-4.18.0/createlinks 2007-03-19 15:21:41.000000000 -0600
4     @@ -204,6 +204,7 @@
5     foreach my $file (qw(
6     /etc/pam.d/system-auth
7     /etc/pam.d/passwd
8     + /etc/pam.d/pwauth
9     /etc/security/pam_abl.conf
10     ))
11     {
12     diff -Nur -x '*.orig' -x '*.rej' e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/ftp/20auth mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/ftp/20auth
13     --- e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/ftp/20auth 2007-01-26 18:56:31.000000000 -0700
14     +++ mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/ftp/20auth 2007-03-19 15:14:44.000000000 -0600
15     @@ -1 +1 @@
16     -auth required pam_stack.so service=system-auth
17     +auth { -f "/lib/security/pam_pwdb.so" ? "required pam_stack.so service=system-auth" : "include system-auth" }
18     diff -Nur -x '*.orig' -x '*.rej' e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/ftp/30account mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/ftp/30account
19     --- e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/ftp/30account 2007-01-26 18:56:31.000000000 -0700
20     +++ mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/ftp/30account 2007-03-19 15:14:48.000000000 -0600
21     @@ -1 +1 @@
22     -account required pam_stack.so service=system-auth
23     +account { -f "/lib/security/pam_pwdb.so" ? "required pam_stack.so service=system-auth" : "include system-auth" }
24     diff -Nur -x '*.orig' -x '*.rej' e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/ftp/40session mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/ftp/40session
25     --- e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/ftp/40session 2007-01-26 18:56:31.000000000 -0700
26     +++ mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/ftp/40session 2007-03-19 15:14:51.000000000 -0600
27     @@ -1 +1 @@
28     -session required pam_stack.so service=system-auth
29     +session { -f "/lib/security/pam_pwdb.so" ? "required pam_stack.so service=system-auth" : "include system-auth" }
30     diff -Nur -x '*.orig' -x '*.rej' e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/login/30account mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/login/30account
31     --- e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/login/30account 2005-11-20 21:28:07.000000000 -0700
32     +++ mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/login/30account 2007-03-19 15:14:54.000000000 -0600
33     @@ -1 +1 @@
34     -account required /lib/security/pam_stack.so service=system-auth
35     +account { -f "/lib/security/pam_pwdb.so" ? "required pam_stack.so service=system-auth" : "include system-auth" }
36     diff -Nur -x '*.orig' -x '*.rej' e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/login/40password mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/login/40password
37     --- e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/login/40password 2005-11-20 21:28:07.000000000 -0700
38     +++ mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/login/40password 2007-03-19 15:14:57.000000000 -0600
39     @@ -1 +1 @@
40     -password required /lib/security/pam_stack.so service=system-auth
41     +password { -f "/lib/security/pam_pwdb.so" ? "required pam_stack.so service=system-auth" : "include system-auth" }
42     diff -Nur -x '*.orig' -x '*.rej' e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/login/50session mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/login/50session
43     --- e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/login/50session 2005-11-20 21:28:07.000000000 -0700
44     +++ mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/login/50session 2007-03-19 15:15:00.000000000 -0600
45     @@ -1,2 +1,2 @@
46     -session required /lib/security/pam_stack.so service=system-auth
47     +session { -f "/lib/security/pam_pwdb.so" ? "required pam_stack.so service=system-auth" : "include system-auth" }
48     session optional /lib/security/pam_console.so
49     diff -Nur -x '*.orig' -x '*.rej' e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/passwd/10auth mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/passwd/10auth
50     --- e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/passwd/10auth 2007-01-26 18:56:31.000000000 -0700
51     +++ mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/passwd/10auth 2007-03-19 15:15:06.000000000 -0600
52     @@ -1 +1 @@
53     -auth required pam_stack.so service=system-auth
54     +auth { -f "/lib/security/pam_pwdb.so" ? "required pam_stack.so service=system-auth" : "include system-auth" }
55     diff -Nur -x '*.orig' -x '*.rej' e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/passwd/20account mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/passwd/20account
56     --- e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/passwd/20account 2007-01-26 18:56:31.000000000 -0700
57     +++ mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/passwd/20account 2007-03-19 15:15:10.000000000 -0600
58     @@ -1 +1 @@
59     -account required pam_stack.so service=system-auth
60     +account { -f "/lib/security/pam_pwdb.so" ? "required pam_stack.so service=system-auth" : "include system-auth" }
61     diff -Nur -x '*.orig' -x '*.rej' e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/passwd/40password mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/passwd/40password
62     --- e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/passwd/40password 2007-01-26 18:56:31.000000000 -0700
63     +++ mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/passwd/40password 2007-03-19 15:15:14.000000000 -0600
64     @@ -1 +1 @@
65     -password required pam_stack.so service=system-auth
66     +password { -f "/lib/security/pam_pwdb.so" ? "required pam_stack.so service=system-auth" : "include system-auth" }
67     diff -Nur -x '*.orig' -x '*.rej' e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/proftpd/10authFTPusers mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/proftpd/10authFTPusers
68     --- e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/proftpd/10authFTPusers 1969-12-31 17:00:00.000000000 -0700
69     +++ mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/proftpd/10authFTPusers 2005-11-20 21:28:07.000000000 -0700
70     @@ -0,0 +1 @@
71     +auth required /lib/security/pam_listfile.so item=user sense=deny file=/etc/ftpusers onerr=succeed
72     diff -Nur -x '*.orig' -x '*.rej' e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/proftpd/20auth mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/proftpd/20auth
73     --- e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/proftpd/20auth 1969-12-31 17:00:00.000000000 -0700
74     +++ mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/proftpd/20auth 2007-03-19 15:14:44.000000000 -0600
75     @@ -0,0 +2 @@
76     +auth { -f "/lib/security/pam_pwdb.so" ? "required pam_stack.so service=system-auth" : "include system-auth" }
77     +auth required pam_shells.so
78     diff -Nur -x '*.orig' -x '*.rej' e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/proftpd/30account mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/proftpd/30account
79     --- e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/proftpd/30account 1969-12-31 17:00:00.000000000 -0700
80     +++ mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/proftpd/30account 2007-03-19 15:14:48.000000000 -0600
81     @@ -0,0 +1 @@
82     +account { -f "/lib/security/pam_pwdb.so" ? "required pam_stack.so service=system-auth" : "include system-auth" }
83     diff -Nur -x '*.orig' -x '*.rej' e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/proftpd/40session mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/proftpd/40session
84     --- e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/proftpd/40session 1969-12-31 17:00:00.000000000 -0700
85     +++ mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/proftpd/40session 2007-03-19 15:14:51.000000000 -0600
86     @@ -0,0 +1 @@
87     +session { -f "/lib/security/pam_pwdb.so" ? "required pam_stack.so service=system-auth" : "include system-auth" }
88     diff -Nur -x '*.orig' -x '*.rej' e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/pwauth/20auth mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/pwauth/20auth
89     --- e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/pwauth/20auth 1969-12-31 17:00:00.000000000 -0700
90     +++ mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/pwauth/20auth 2007-03-19 15:14:44.000000000 -0600
91     @@ -0,0 +2 @@
92     +auth { -f "/lib/security/pam_pwdb.so" ? "required pam_stack.so service=system-auth" : "include system-auth" }
93     +auth required /lib/security/pam_nologin.so
94     diff -Nur -x '*.orig' -x '*.rej' e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/pwauth/30account mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/pwauth/30account
95     --- e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/pwauth/30account 1969-12-31 17:00:00.000000000 -0700
96     +++ mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/pam.d/pwauth/30account 2007-03-19 15:14:48.000000000 -0600
97     @@ -0,0 +1 @@
98     +account { -f "/lib/security/pam_pwdb.so" ? "required pam_stack.so service=system-auth" : "include system-auth" }

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed