diff options
author | Michael Scherer <misc@mageia.org> | 2010-11-22 13:15:23 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2010-11-22 13:15:23 +0000 |
commit | 8c050d2b88955a122b019ee314d6311e66947d4e (patch) | |
tree | 1def4125ebd8aa2b0279d6d264f2cbcb49036536 /modules/pam | |
parent | d7d59d0503c806591c5ab3b422547b715a38a4b3 (diff) | |
download | puppet-8c050d2b88955a122b019ee314d6311e66947d4e.tar puppet-8c050d2b88955a122b019ee314d6311e66947d4e.tar.gz puppet-8c050d2b88955a122b019ee314d6311e66947d4e.tar.bz2 puppet-8c050d2b88955a122b019ee314d6311e66947d4e.tar.xz puppet-8c050d2b88955a122b019ee314d6311e66947d4e.zip |
- make sure nscd is installed and running
Diffstat (limited to 'modules/pam')
-rw-r--r-- | modules/pam/manifests/init.pp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/pam/manifests/init.pp b/modules/pam/manifests/init.pp index b791bc0e..abe89b30 100644 --- a/modules/pam/manifests/init.pp +++ b/modules/pam/manifests/init.pp @@ -1,10 +1,15 @@ class pam { class base { - package { ["pam_ldap","nss_ldap"]: + package { ["pam_ldap","nss_ldap","nscd"]: ensure => installed, } + service { nscd: + ensure => running, + path => '/etc/init.d/nscd', + } + file { "system-auth": path => "/etc/pam.d/system-auth", owner => root, |