summaryrefslogtreecommitdiff
path: root/net/openldap24-server
diff options
context:
space:
mode:
authorEdwin Groothuis <edwin@FreeBSD.org>2003-04-07 07:30:33 +0000
committerEdwin Groothuis <edwin@FreeBSD.org>2003-04-07 07:30:33 +0000
commitd67e115ebf1a1363dbb5103dd4f2f9b02959bb8f (patch)
treefcba8cd0f9e29652e6fb324503105c8845904fb0 /net/openldap24-server
parentnet/openldap20 can't start with sample command line syntax in the startup scr... (diff)
net/openldap20 can't start with sample command line syntax in the startup script.
PR: ports/49074 Submitted by: Taoka Fumiyoshi <fmysh@iijmio-mail.jp>
Diffstat (limited to 'net/openldap24-server')
-rw-r--r--net/openldap24-server/files/slapd.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/net/openldap24-server/files/slapd.sh b/net/openldap24-server/files/slapd.sh
index e6305bb448fa..0e3601b07e5c 100644
--- a/net/openldap24-server/files/slapd.sh
+++ b/net/openldap24-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
;;