/[adm]/puppet/modules/pam/manifests/init.pp
ViewVC logotype

Contents of /puppet/modules/pam/manifests/init.pp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 451 - (show annotations) (download)
Wed Nov 24 02:50:45 2010 UTC (13 years, 5 months ago) by misc
File size: 1707 byte(s)
restrict login to people of the group mga-commiters ( previous try was
not working with ssh key )
1 class pam {
2
3 class base {
4 package { ["pam_ldap","nss_ldap","nscd"]:
5 ensure => installed,
6 }
7
8 service { nscd:
9 ensure => running,
10 path => '/etc/init.d/nscd',
11 }
12
13 file { "system-auth":
14 path => "/etc/pam.d/system-auth",
15 owner => root,
16 group => root,
17 mode => 644,
18 content => template("pam/system-auth")
19 }
20
21 file { "nsswitch.conf":
22 path => "/etc/nsswitch.conf",
23 owner => root,
24 group => root,
25 mode => 644,
26 content => template("pam/nsswitch.conf")
27 }
28
29 $ldap_password = extlookup("${fqdn}_ldap_password",'x')
30 file { "ldap.secret":
31 path => "/etc/ldap.secret",
32 owner => root,
33 group => root,
34 mode => 600,
35 content => $ldap_password
36 }
37
38 file { "ldap.conf":
39 path => "/etc/ldap.conf",
40 owner => root,
41 group => root,
42 mode => 644,
43 content => template("pam/ldap.conf")
44 }
45 }
46
47 # beware , this two classes are exclusive
48
49 # for server where only admins can connect
50 class admin_access {
51 $access_class = "admin"
52 include base
53 }
54
55 # for server where people can connect with ssh ( git, svn )
56 class committers_access {
57 # this is required, as we force the shell to be the restricted one
58 # openssh will detect if the file do not exist and while refuse to log the
59 # user, and erase the password ( see pam_auth.c in openssh code, seek badpw )
60 # so the file must exist
61 # permission to use svn, git, etc must be added separatly
62 include restrictshell::shell
63 $access_class = "committers"
64 include base
65 }
66 }

  ViewVC Help
Powered by ViewVC 1.1.30