diff options
author | Michael Scherer <misc@mageia.org> | 2012-02-09 09:10:47 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2012-02-09 09:10:47 +0000 |
commit | ff774ba0d3d23acc670cc2ebe3f9f1e6c45792da (patch) | |
tree | 095a66773c597246c7a21b523d81506f0eb740a0 /deployment/common/manifests/init.pp | |
parent | fc0ae7ab095230dc1ee443bb728f8f3fce296980 (diff) | |
download | puppet-ff774ba0d3d23acc670cc2ebe3f9f1e6c45792da.tar puppet-ff774ba0d3d23acc670cc2ebe3f9f1e6c45792da.tar.gz puppet-ff774ba0d3d23acc670cc2ebe3f9f1e6c45792da.tar.bz2 puppet-ff774ba0d3d23acc670cc2ebe3f9f1e6c45792da.tar.xz puppet-ff774ba0d3d23acc670cc2ebe3f9f1e6c45792da.zip |
remove msec by default, since it try to always change the /etc/pam.d/system-auth file for password size
Diffstat (limited to 'deployment/common/manifests/init.pp')
-rw-r--r-- | deployment/common/manifests/init.pp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/deployment/common/manifests/init.pp b/deployment/common/manifests/init.pp index 0a2bf7b1..7929519a 100644 --- a/deployment/common/manifests/init.pp +++ b/deployment/common/manifests/init.pp @@ -6,6 +6,12 @@ class common { $package_list = ['screen', 'vim-enhanced', 'htop', 'lsof', 'tcpdump', 'rsync', 'less','lshw', 'lvm2', 'iotop'] package { $package_list: } + + # removed as it mess up with our policy for password + # and is not really used + package { 'msec': + ensure => 'absent', + } } class export_ssh_keys { |