patch-test_cfg 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. $OpenBSD: patch-test_cfg,v 1.5 2015/02/16 15:34:10 sthen Exp $
  2. --- test.cfg.orig Sun Jun 1 12:35:49 2014
  3. +++ test.cfg Mon Feb 16 15:32:28 2015
  4. @@ -4,22 +4,22 @@
  5. # Set this to the full path of your LDAP server executable
  6. # (e.g '/usr/sbin/slapd')
  7. -$SERVER_EXE = '<path to ldap server executable>';
  8. +$SERVER_EXE = '${LOCALBASE}/libexec/slapd';
  9. # This should be one of
  10. # * openldap[+ssl][+ipc][+sasl]
  11. # options are appended with '+' signs
  12. -$SERVER_TYPE = 'openldap';
  13. +$SERVER_TYPE = 'openldap+ssl+ipc';
  14. # Change this if your host cannot be contacted as localhost
  15. # Some tests may fail if the name does not resolve to an IPv4 and an IPv6 address
  16. #$HOST = 'localhost';
  17. # Set this to the directory where your OpenLDAP schema files are located
  18. -$SLAPD_SCHEMA_DIR = '';
  19. +$SLAPD_SCHEMA_DIR = '${SYSCONFDIR}/openldap/schema';
  20. # OpenLDAP DB type: default is mdb, alternatives: hdb, bdb, ...
  21. -#$SLAPD_DB = 'mdb';
  22. +$SLAPD_DB = 'hdb';
  23. # Set this to the slapd module directory if your $SLAPD_DB is dynamically built
  24. # (e.g. '/usr/lib/ldap/')