Puppet module for managing NSLCD
Go to file
2018-08-30 10:21:59 +02:00
examples Move tests file to examples as the convention has changed 2018-08-29 18:05:40 +02:00
manifests manifest/init.pp: Fix chaining arrow syntax 2018-08-29 17:55:13 +02:00
spec Convert the module to be PDK compliant 2018-08-22 12:07:49 +02:00
templates Fix #7 single line URI 2016-07-11 08:22:07 -04:00
.fixtures.yml Initial import 2015-04-16 18:04:30 -04:00
.gitignore Convert the module to be PDK compliant 2018-08-22 12:07:49 +02:00
.gitlab-ci.yml Convert the module to be PDK compliant 2018-08-22 12:07:49 +02:00
.pdkignore Convert the module to be PDK compliant 2018-08-22 12:07:49 +02:00
.rspec Convert the module to be PDK compliant 2018-08-22 12:07:49 +02:00
.rubocop.yml Convert the module to be PDK compliant 2018-08-22 12:07:49 +02:00
.travis.yml Convert the module to be PDK compliant 2018-08-22 12:07:49 +02:00
.yardopts Convert the module to be PDK compliant 2018-08-22 12:07:49 +02:00
appveyor.yml Convert the module to be PDK compliant 2018-08-22 12:07:49 +02:00
CONTRIBUTING.md Migrating into modulesync 2015-04-23 14:32:48 -04:00
Gemfile Convert the module to be PDK compliant 2018-08-22 12:07:49 +02:00
metadata.json Fix metadata.json syntax with PDK validate 2018-08-22 14:52:32 +02:00
Rakefile Convert the module to be PDK compliant 2018-08-22 12:07:49 +02:00
README.md Fix travis build link after repo ownership transfer 2018-08-21 14:55:29 +02:00

nslcd

Build Status

Looking for co-maintainers! Open an issue if you're interested

Table of Contents

  1. Overview
  2. Module Description - What the module does and why it is useful
  3. Setup - The basics of getting started with nslcd
  4. Usage - Configuration options and additional functionality
  5. Reference - An under-the-hood peek at what the module is doing and how
  6. Limitations - OS compatibility, etc.
  7. Development - Guide for contributing to the module

Overview

This module installs and configured nslcd to get pam/nss data from ldap.

Module Description

This module allows you to install and configure the nslcd daemon (and its dependencies), to provide ldap support for PAM and NSS.

Setup

What nslcd affects

  • nslcd package and service
  • /etc/nslcd.conf

Usage

Simply include/contain/required/declare the nslcd class. It includes a few sane defaults, so it should work out of the box. However, we recommend that you declare the class and override a few parameters:

class { 'nslcd':
  ldap_uris => ['ldap://ldap.mycompany.com'],
  ldap_ssl  => 'on',
}

Reference

todo

Limitations

The module has been tested with Ubuntu 12.04 and 14.04, Debian 6 and 7, and Puppet 3.7. It should work Puppet 3.x. For additional OS support, you should contribute it back upstream!

The module doesn't support setting the rootbinddn and rootbindpw attributes, but it can be easily added.

Development

If you want to improve this module, send us a patch of pull request!