]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/blob - modules/profile/manifests/pam_ldap.pp
Add wireguard profile
[perso/Immae/Projets/Puppet.git] / modules / profile / manifests / pam_ldap.pp
1 class 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