aboutsummaryrefslogtreecommitdiffstats
path: root/modules/pam/manifests
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2010-11-17 15:50:32 +0000
committerMichael Scherer <misc@mageia.org>2010-11-17 15:50:32 +0000
commitd0b22dcb390873be41d24bafb728a4f21810cad7 (patch)
tree6ff672bbde0a05155c0d41cb3426970b5c89f055 /modules/pam/manifests
parent8b552f1fec441b0591d3a61fb4e296b6eb90ceb3 (diff)
downloadpuppet-d0b22dcb390873be41d24bafb728a4f21810cad7.tar
puppet-d0b22dcb390873be41d24bafb728a4f21810cad7.tar.gz
puppet-d0b22dcb390873be41d24bafb728a4f21810cad7.tar.bz2
puppet-d0b22dcb390873be41d24bafb728a4f21810cad7.tar.xz
puppet-d0b22dcb390873be41d24bafb728a4f21810cad7.zip
- fix templates
- add nsswitch.conf
Diffstat (limited to 'modules/pam/manifests')
-rw-r--r--modules/pam/manifests/init.pp10
1 files changed, 9 insertions, 1 deletions
diff --git a/modules/pam/manifests/init.pp b/modules/pam/manifests/init.pp
index 07f2214a..0accd63a 100644
--- a/modules/pam/manifests/init.pp
+++ b/modules/pam/manifests/init.pp
@@ -10,7 +10,15 @@ class pam {
owner => root,
group => root,
mode => 644,
- content => template("openldap/system-auth")
+ content => template("pam/system-auth")
+ }
+
+ file { "nsswitch.conf":
+ path => "/etc/nsswitch.conf",
+ owner => root,
+ group => root,
+ mode => 644,
+ content => template("pam/system-auth")
}
}