diff options
Diffstat (limited to 'net/openldap22/files/slapd.sh')
-rw-r--r-- | net/openldap22/files/slapd.sh | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/net/openldap22/files/slapd.sh b/net/openldap22/files/slapd.sh index 1704074b7968..062febc1dda7 100644 --- a/net/openldap22/files/slapd.sh +++ b/net/openldap22/files/slapd.sh @@ -2,14 +2,30 @@ # # $FreeBSD$ -slapd=@@PREFIX@@/libexec/slapd +slapd_program=@@PREFIX@@/libexec/slapd + +# Uncommnet one of the following: +# +# IPv4 Only +#slapd_args='-h "ldap://0.0.0.0";' +# +# IPv6 and IPv4 +#slapd_ags='-h "ldap://[::] ldap://0.0.0.0";' +# +# IPv6 Only +#slapd_args='-h "ldap://[::];' +# +# +slapd_args= + pidfile=/var/run/slapd.pid case "$1" in start) if [ -x $slapd ]; then echo -n ' slapd' - $slapd + ${slapd_program} ${slapd_args} + fi ;; stop) |