Version information
Start using this module
Add this module to your Puppetfile:
mod 'pdxcat-pam', '0.0.3'
Learn more about managing modules with a PuppetfileDocumentation
PAM module for Puppet
Description
Puppet module for managing /etc/security/access.conf and /etc/security/limits.conf
Example usage for managing access.conf
pam::access {
"root":
permission => "+",
entity => "root",
origin => "ALL",
priority => "10";
"ALL":
permission => "-",
entity => "ALL",
origin => "ALL",
priority => "20";
}
Example usage for managing limits.conf
pam::limits {
"nofile_hard":
ensure => present,
domain => "*",
type => "hard",
item => "nofile",
value => "8192",
priority => 10;
"nofile_soft":
ensure => present,
domain => "*",
type => "soft",
item => "nofile",
value => "1024",
priority => 20;
}
0.0.2 - pdxcat/pam - 2012/05/02
*** Update CHANGELOG for 0.0.2 release 5c46731 Ensure unique concat::fragment resource names f5120fb Merge remote-tracking branch 'pdxcat/master' 327d6f1 Add version number of released concat module
0.0.1 - pdxcat/pam - 2012/04/28
195de62 Modulefile source and project_page should point at pdxcat 2cdec90 Realign code to puppet style guide b916ceb Merge branches 'master' and 'support_limits.conf' 82e3380 Update readme 0206705 Add pam::limits to manage /etc/security/limits.conf 097116e Merge pull request #1 from blkperl/release_to_forge 1bce589 Add Modulefile for release to the forge 45cc447 Add Apache 2.0 LICENSE file 8446f70 Change README to use markdown 3da637d Update readme one more time fe9ccac Correct typo in README d1d7ac6 Initial commit. Add manifests and README
Dependencies
- puppetlabs/concat (>= 1.0.0)
Copyright (C) 2012 Portland State University Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.