
|
puppetmaster and ldap binding on lennyToday I was configuring a new puppetmaster on a default lenny and ldap 20:12:57|root@server:~ 0 # puppetd --test err: Could not retrieve catalog: LDAP Search failed warning: Not using cache on failed catalog After some debugging time I saw that puppet dit a search but dit not BIND to ldap with the given user then the google search was easy and I manualy patched this version so I could start # Bug http://projects.reductivelabs.com/issues/show/1521 # new(Puppet[:ldapserver], Puppet[:ldapport], :ssl => ssl) new(Puppet[:ldapserver], Puppet[:ldapport], :ssl => ssl, :user => Puppet[:ldapuser], :password => Puppet[:ldappassword] )
|