Skip to content

fancyguy/chef-openldap-server

 
 

Repository files navigation

openldap-server cookbook

Requirements

Ubuntu >= 10.04 or Debian >= 7.0.0
Requirement is based on slapd package minimum requirement of 2.4.
OpenLDAP 2.4 included the dynamic config option, which is what this cookbook uses

Usage

  • include_recipe 'openldap-server::default'

    • Installs OpenLDAP from the package repo
    • Configures a basic ldap database
      • Includes People, Groups, and Services OU containers
      • Includes the memberOf overlay
      • Includes ppolicy overlay
      • Sets up access controls/no unauthenticated access
  • Setup attributes listed below *

  • You can optionally supply your own ldif instead of using the provided *

Attributes

Main Options

Domain name to use which creates the suffix
node['openldap-server'][:domain] = 'default.com'

Root password for the LDAP database
This can and should be hashed and salted, use slappasswd to generate
node['openldap-server'][:rootpw] = 'default'

User attribute to use for root user
This ends up as "cn=admin,dc=example,dc=com"
node['openldap-server'][:root_user_attr] = "cn=admin"

Where do you want the ldap DB to be stored
node['openldap-server'][:db_dir] = '/var/lib/ldap'

You can use these options in your own template if you like
To supply your own ldif template/file to use
node['openldap-server'][:db_ldif] = 'db.ldif.erb'

Default Config Options (/etc/default/slapd)

default['openldap-server'][:default_config][:slapd_conf] = nil # SLAPD_CONF  
default['openldap-server'][:default_config][:slapd_user] = 'openldap' # SLAPD_USER  
default['openldap-server'][:default_config][:slapd_group] = 'openldap' # SLAPD_GROUP  
default['openldap-server'][:default_config][:slapd_pidfile] = nil # SLAPD_PIDFILE  
default['openldap-server'][:default_config][:slapd_services] = "ldap:/// ldapi:///" # SLAPD_SERVICES  
default['openldap-server'][:default_config][:slapd_nostart] = false # SLAPD_NO_START  
default['openldap-server'][:default_config][:slapd_sentinel_file] = '/etc/ldap/noslapd' # SLAPD_SENTINEL_FILE  
default['openldap-server'][:default_config][:slapd_kerb_file] = '/etc/krb5.keytab' # KRB_KTNAME  
default['openldap-server'][:default_config][:slapd_options] = nil # SLAPD_OPTIONS  

Recipes

openldap-server::install - Installs OpenLDAP

openldap-server::createdb - Creates basic DB

openldap-server::default - includes both install and createdb reciepes

Author

Author:: cpuguy83 ([email protected])

About

OpenLDAP Server Cookbook for Chef

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 61.4%
  • Ruby 34.8%
  • ApacheConf 3.8%