summaryrefslogtreecommitdiff
path: root/net/openldap20-server
diff options
context:
space:
mode:
authorEdwin Groothuis <edwin@FreeBSD.org>2003-04-07 07:29:35 +0000
committerEdwin Groothuis <edwin@FreeBSD.org>2003-04-07 07:29:35 +0000
commit92d4893665b1cbfbf073e13e8f8fadaadeebd228 (patch)
tree9a6bc3dc00d1c5049c0f39514894bb5098e694b4 /net/openldap20-server
parentFix crashes in some cases. (diff)
net/openldap20 can't start with sample command line syntax in the startup script.
When you try to start slapd with the sample commandline arguments for specifying multiple URIs in /usr/local/etc/rc.d/slapd.sh, it fails. PR: ports/49074 Submitted by: Taoka Fumiyoshi <fmysh@iijmio-mail.jp>
Notes
Notes: svn path=/head/; revision=78506
Diffstat (limited to 'net/openldap20-server')
-rw-r--r--net/openldap20-server/files/slapd.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/net/openldap20-server/files/slapd.sh b/net/openldap20-server/files/slapd.sh
index e6305bb448fa..0e3601b07e5c 100644
--- a/net/openldap20-server/files/slapd.sh
+++ b/net/openldap20-server/files/slapd.sh
@@ -7,13 +7,13 @@ slapd_program=@@PREFIX@@/libexec/slapd
# Uncomment one of the following:
#
# IPv4 Only
-#slapd_args='-h ldap://0.0.0.0;'
+#slapd_args='-h ldap://0.0.0.0'
#
# IPv6 and IPv4
-#slapd_ags='-h "ldap://[::] ldap://0.0.0.0";'
+#slapd_ags='-h "ldap://[::] ldap://0.0.0.0"'
#
# IPv6 Only
-#slapd_args='-h ldap://[::];'
+#slapd_args='-h ldap://[::]'
#
#
slapd_args=
@@ -24,7 +24,7 @@ case "$1" in
start)
if [ -x $slapd ]; then
echo -n ' slapd'
- ${slapd_program} ${slapd_args}
+ eval ${slapd_program} ${slapd_args}
fi
;;