From f2fc3f8018963620e3d9772ce5544aace82ecb22 Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Sun, 29 May 2011 12:09:32 +0000 Subject: add a slave class to create a 2nd ldap --- modules/openldap/manifests/init.pp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'modules/openldap/manifests') diff --git a/modules/openldap/manifests/init.pp b/modules/openldap/manifests/init.pp index 3d55cb5f..f8acb85f 100644 --- a/modules/openldap/manifests/init.pp +++ b/modules/openldap/manifests/init.pp @@ -77,4 +77,29 @@ class openldap { content => template("openldap/ldap.sysconfig"), } } + + # TODO create the user for sync in ldap + # syntaxic sugar + define slave_instance($rid) { + class { openldap::slave: + rid => $rid, + } + } + + class slave($rid) inherits common { + $sync_password = extlookup("ldap_syncuser-$hostname",'x'); + + # same access rights as master + file { '/etc/openldap/mandriva-dit-access.conf': + content => template("openldap/mandriva-dit-access.conf"), + } + + file { '/etc/openldap/slapd.conf': + content => template("openldap/slapd.conf",'openldap/slapd.syncrepl.conf'), + } + + file { '/etc/sysconfig/ldap': + content => template("openldap/ldap.sysconfig"), + } + } } -- cgit v1.2.1