#!/bin/bash
# l4.conf - LDAP Helper Configuration
set -e
######
# LDAP Configuration
# $ldap_realm - Defines the realm to use for LDAP operations
# Default: Domain name of server
ldap_realm=$domain
# $ldap_base_dn - if not set, derives the setting from the host's domain
# name (e.g. ``example.com`` becomes ``dc=example,dc=com``)
#; ldap_base_dn=
######
# LDAP Server
# $ldap_server - Defines the name of the LDAP server
ldap_server=ldap
# $ldap_host - Defines the name of the LDAP host.
ldap_host=$ldap_server
######
# LDAP Administration
# $ldap_admin - Defines the RDN of the LDAP administrator.
ldap_admin="cn=admin"
######
# Organizational Units
# $ldap_hosts_ou - Defines the name of the LDAP host organizational unit.
ldap_hosts_ou=Hosts
# $ldap_users_ou - Defines the name of the LDAP user organizational unit.
ldap_users_ou=People
# $ldap_groups_ou - Defines the name of the LDAP group organizational unit.
ldap_groups_ou=Groups
######
# Object Classes
# $hostsOC - Defines the name of the LDAP host object class.
hostsOC=posixHost
# $usersOC - Defines the name of the LDAP user object class.
usersOC=posixAccount
# $groupsOC - Defines the name of the LDAP group object class.
groupsOC=posixGroup
######
# Low-Level Settings
# $ldapadd_opts[] - Extra options to pass to ldapadd
ldapadd_opts=( )
# $ldapmodify_opts[] - Extra options to pass to ldapmodify
ldapmodify_opts=( )
# $ldapsearch_opts[] - Extra options to pass to ldapsearch
ldapsearch_opts=( -LLL -o ldif-wrap=no )
Generated on Fri Jul 28 14:36:23 PDT 2017 by mcsh d14 v0.23.0.