i am trying to install openldap server with Puppet Version 5.5.20. For the openldap installation i use camptocamp/openldap module v 2.0.0. I try it first with minimal configuration. My puppet manifest file is
# Test installation OpenLDAP
class srv::testldap (
) {
class { 'openldap::server': }
openldap::server::database { 'dc=example,dc=com':
ensure => present,
}
}
An error comes by running puppet agent:
"Error: Could not prefetch openldap_database provider 'olc': Command original_slapcat is missing"
I would be very appreciative of any help.