c0943d4eca
obvious how to do this without breaking pexp, as done in databases/openldap, aja@ reminded me to do openldap23 as well.
21 lines
417 B
Bash
21 lines
417 B
Bash
#!/bin/sh
|
|
#
|
|
# $OpenBSD: slapd.rc,v 1.4 2012/05/05 14:42:39 sthen Exp $
|
|
|
|
daemon="${TRUEPREFIX}/libexec/slapd"
|
|
daemon_flags="-u _openldap"
|
|
|
|
# To bind to multiple URLs, pass this to rc.d(8) via /etc/rc.conf.local:
|
|
# slapd_flags="-u _openldap -h ldap:///\ ldaps:///"
|
|
# Note the escaped space between URLs. ^^
|
|
|
|
. /etc/rc.d/rc.subr
|
|
|
|
rc_reload=NO
|
|
|
|
rc_pre() {
|
|
/usr/bin/install -d -o _openldap /var/run/openldap
|
|
}
|
|
|
|
rc_cmd $1
|