Created
July 10, 2014 15:53
-
-
Save feniix/e1c45ecec0cfefbceff5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hiera_include('classes') | |
node default { | |
class { 'openldap::server': | |
databases => { | |
'dc=spantree,dc=net' => { | |
directory => '/var/lib/ldap', | |
rootdn => 'cn=admin,dc=spantree,dc=net', | |
rootpw => '{SHA}qUqP5cyxm6YcTAhz05Hph5gvu9M=', | |
} | |
}, | |
suffix => 'dc=spantree,dc=net', | |
} | |
openldap::server::access { | |
'to attrs=userPassword,shadowLastChange by dn="cn=admin,dc=spantree,dc=net" on dc=spantree,dc=net': access => 'write'; | |
'to attrs=userPassword,shadowLastChange by anonymous on dc=spantree,dc=net': access => 'auth'; | |
'to attrs=userPassword,shadowLastChange by self on dc=spantree,dc=net': access => 'write'; | |
'to attrs=userPassword,shadowLastChange by * on dc=spantree,dc=net': access => 'none'; | |
} | |
openldap::server::access { | |
'to dn.base="" by * on dc=spantree,dc=net': access => 'read', | |
} | |
openldap::server::access { | |
'to * by dn="cn=admin,dc=spantree,dc=net" on dc=spantree,dc=net': access => 'write'; | |
'to * by * on dc=spantree,dc=net': access => 'read'; | |
} | |
openldap::server::module { 'memberof': | |
ensure => present, | |
} | |
openldap::server::overlay { 'memberof on dc=spantree,dc=net': | |
ensure => present, | |
} | |
Exec { path => [ '/bin/', '/sbin/' , '/usr/bin/', '/usr/sbin/' ] } | |
exec { 'slapd-stop': | |
command => 'service slapd stop', | |
} | |
$default_entries = '/tmp/default-entries.ldif' | |
file { $default_entries: | |
ensure => file, | |
source => 'puppet:///modules/local_mod/ldap.ldif', | |
} | |
exec { 'import-tree': | |
command => "slapadd -v -l ${default_entries}", | |
} | |
exec { 'slapd': | |
command => 'service slapd start', | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment