svn commit: r476803 - in head/net/openldap24-server: . files

Cy Schubert cy at FreeBSD.org
Fri Aug 10 02:57:06 UTC 2018


Author: cy
Date: Fri Aug 10 02:57:05 2018
New Revision: 476803
URL: https://svnweb.freebsd.org/changeset/ports/476803

Log:
  Ensure that slapd starts before kdc, as the kdc may be configured to
  require LDAP services. If it is configured to require LDAP and the
  slapd server is not yet started, the kdc will fail to start.
  
  PR:		229939
  Approved by:	delphij@ (maintainer)
  MFH:		2018Q3
  Differential Revision:	https://reviews.freebsd.org/D16602

Modified:
  head/net/openldap24-server/Makefile   (contents, props changed)
  head/net/openldap24-server/files/slapd.in

Modified: head/net/openldap24-server/Makefile
==============================================================================
--- head/net/openldap24-server/Makefile	Fri Aug 10 00:55:12 2018	(r476802)
+++ head/net/openldap24-server/Makefile	Fri Aug 10 02:57:05 2018	(r476803)
@@ -65,7 +65,7 @@ BROKEN=			incompatible OpenLDAP version: ${WANT_OPENLD
 .endif
 
 PORTREVISION_CLIENT=	0
-PORTREVISION_SERVER=	3
+PORTREVISION_SERVER=	4
 OPENLDAP_SHLIB_MAJOR=	2
 OPENLDAP_SHLIB_MINOR=	10.9
 OPENLDAP_MAJOR=		${DISTVERSION:R}

Modified: head/net/openldap24-server/files/slapd.in
==============================================================================
--- head/net/openldap24-server/files/slapd.in	Fri Aug 10 00:55:12 2018	(r476802)
+++ head/net/openldap24-server/files/slapd.in	Fri Aug 10 02:57:05 2018	(r476803)
@@ -5,7 +5,7 @@
 
 # PROVIDE: slapd
 # REQUIRE: FILESYSTEMS ldconfig netif
-# BEFORE: SERVERS
+# BEFORE: SERVERS kdc
 # KEYWORD: shutdown
 
 #


More information about the svn-ports-all mailing list