]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/blame - modules/profile/manifests/pam_ldap.pp
Add kerberos client profile
[perso/Immae/Projets/Puppet.git] / modules / profile / manifests / pam_ldap.pp
CommitLineData
c53ac3f8
IB
1class profile::pam_ldap (
2) {
3 ensure_packages(["pam_ldap"])
4
5 file { "/etc/pam_ldap.d":
6 ensure => directory,
7 mode => "0755",
8 owner => "root",
9 group => "root",
10 require => Package["pam_ldap"],
11 }
12}
13