ldap.conf 292 B

12345678910111213141516
  1. #
  2. # LDAP related stuff (Salt managed)
  3. #
  4. apply Service "ldaps" {
  5. import "generic-service"
  6. check_command = "ldap"
  7. vars.ldap_address = host.name
  8. vars.ldap_base = "dc=ffho,dc=net"
  9. vars.ldap_ssl = true
  10. vars.ldap_v3 = true
  11. assign where host.address && "ldap" in host.vars.roles
  12. }