cookbook 'pam', '= 1.0.1'
pam (5) Versions 1.0.1 Follow2
Installs/Configures pam
cookbook 'pam', '= 1.0.1', :supermarket
knife supermarket install pam
knife supermarket download pam
pam-cookbook
Manages PAM services in /etc/pam.d
Limitations
This cookbook will not set up PAM if you do not already have it installed. It will only modify an existing configuration.
Also, currently it only includes defaults for /etc/pam.d/su. If you want to override any other PAM services, you will first need to transcribe the entire service configuration into the appropriate node attibute, otherwise the PAM file will be overwritten with only the attributes you configure (and your system will become unusable).
Supported Platforms
This cookbook should work fine on Red Hat systems, however it has only been tested on Ubuntu 12.04.
Attributes
-
node['pam_d']['services']
- Example:
{ 'su' => { 'main' => { 'pam_env' => { 'interface' => 'session', 'control_flag' => 'required', 'name' => 'pam_env.so', 'args' => 'readenv=1', 'disabled' => false } }, 'includes' => %w( common-something ) } }
NOTE: pam_env
in this case is just a placeholder so that we can use a keyed hash instead of an array. disabled
is optional but if it is present and set to true, it will prevent the entry from showing up in the PAM service file.
Usage
pam::default
Include pam
in a recipe:
include_recipe 'pam'
Contributing
- Fork the repository on Github
- Create a named feature branch (i.e.
add-new-recipe
) - Write your change
- Write tests for your change (if applicable)
- Run the tests, ensuring they all pass
- Submit a Pull Request
License and Authors
Author:: EverTrue, Inc. (eric.herot@evertrue.com)
Dependent cookbooks
This cookbook has no specified dependencies.