openldap.patch 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. Index: servers/slapd/slapd.conf
  2. --- servers/slapd/slapd.conf.orig 2003-05-25 01:19:14.000000000 +0200
  3. +++ servers/slapd/slapd.conf 2003-12-05 10:43:58.000000000 +0100
  4. @@ -64,4 +64,21 @@
  5. # Mode 700 recommended.
  6. directory %LOCALSTATEDIR%/openldap-data
  7. # Indices to maintain
  8. +
  9. index objectClass eq
  10. +
  11. +#######################################################################
  12. +# replication via slurpd(8)
  13. +#######################################################################
  14. +
  15. +# master server configuration
  16. +#replogfile %LOCALSTATEDIR%/openldap-slurp
  17. +#replica-pidfile %LOCALSTATEDIR%/slurpd.pid
  18. +#replica host=slave.example.com:389
  19. +# binddn="cn=admin,dc=example,dc=org"
  20. +# bindmethod=simple credentials=secret
  21. +
  22. +# slave server(s) configuration
  23. +#updatedn "cn=admin,dc=example,dc=org"
  24. +#updateref ldap://master.example.org
  25. +
  26. Index: servers/slapd/Makefile.in
  27. --- servers/slapd/Makefile.in.orig 2004-07-26 00:31:04 +0200
  28. +++ servers/slapd/Makefile.in 2004-07-28 08:38:37 +0200
  29. @@ -421,6 +421,6 @@
  30. cd $(DESTDIR)$(sbindir); \
  31. rm -f $(SLAPTOOLS); \
  32. for i in $(SLAPTOOLS); do \
  33. - $(LN_S) $(libexecdir)/slapd$(EXEEXT) $$i$(EXEEXT); \
  34. + $(LN_S) $(DESTDIR)$(libexecdir)/slapd$(EXEEXT) $$i$(EXEEXT); \
  35. done