aboutsummaryrefslogtreecommitdiff
path: root/modules/profile/manifests/pam_ldap.pp
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2018-06-27 20:45:15 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2018-06-28 02:33:05 +0200
commitc53ac3f84852a42aa8b7341ee7fe0a629d2e3579 (patch)
tree694c4790a8382fe7c5ed5a2033042c377999760b /modules/profile/manifests/pam_ldap.pp
parentf1d583bfdaf881116e5f9ca9e050307e7acdc28e (diff)
downloadPuppet-c53ac3f84852a42aa8b7341ee7fe0a629d2e3579.tar.gz
Puppet-c53ac3f84852a42aa8b7341ee7fe0a629d2e3579.tar.zst
Puppet-c53ac3f84852a42aa8b7341ee7fe0a629d2e3579.zip
Refactor postgresql configuration
Diffstat (limited to 'modules/profile/manifests/pam_ldap.pp')
-rw-r--r--modules/profile/manifests/pam_ldap.pp13
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/profile/manifests/pam_ldap.pp b/modules/profile/manifests/pam_ldap.pp
new file mode 100644
index 0000000..956a7cd
--- /dev/null
+++ b/modules/profile/manifests/pam_ldap.pp
@@ -0,0 +1,13 @@
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