A puppet module to configure our OpenLDAP servers
Go to file
Tobias Herre 2c98e83332 moved config into def, added tree_suffix paramter for lam 2020-08-25 12:21:03 +02:00
files Introduced wmdeGroup which is a posxGroup derived class to manage also groupOfNames 2020-08-24 23:20:16 +02:00
manifests moved config into def, added tree_suffix paramter for lam 2020-08-25 12:21:03 +02:00
templates moved config into def, added tree_suffix paramter for lam 2020-08-25 12:21:03 +02:00
LICENSE Initial commit 2020-08-18 07:19:40 +00:00
README.md moved config into def, added tree_suffix paramter for lam 2020-08-25 12:21:03 +02:00

README.md

puppet-wmdeit_ldap

A puppet module to configure our OpenLDAP servers

To get it running:

puppet module install camptocamp-openldap

For LAM

puppet module install puppetlabs-apache
puppet module install puppet-php

Examples:

class {"wmdeit_ldap":
    serverid => 17,
    simple_bind_tls => "0",
    log_level => 4,
}

class {"wmdeit_ldap::lam":
    master_password => "1234",
    master_password_salt => "5678",

    configs => {
        wmde => {
            password => "1234",
            password_salt => "5678",
            tree_suffix => "dc=wikimedia,dc=de",
        }
    }
}