blob: 956a7cd01eeead3a4a6a662ea3f1f26f4b12b68e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class profile::pam_ldap (
) {
ensure_packages(["pam_ldap"])
file { "/etc/pam_ldap.d":
ensure => directory,
mode => "0755",
owner => "root",
group => "root",
require => Package["pam_ldap"],
}
}
|