diff options
author | edwin <edwin@FreeBSD.org> | 2003-04-07 07:29:35 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-04-07 07:29:35 +0000 |
commit | d9f800ac5dc95c5fe45cd30ac221f58519c65994 (patch) | |
tree | d67e12be2cdccdeda006d925b9a9a4a17bf423fd /net/openldap20-server | |
parent | 80bf91aa984751fedd3b4d8490961950b0e580cc (diff) | |
download | FreeBSD-ports-d9f800ac5dc95c5fe45cd30ac221f58519c65994.zip FreeBSD-ports-d9f800ac5dc95c5fe45cd30ac221f58519c65994.tar.gz |
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>
Diffstat (limited to 'net/openldap20-server')
-rw-r--r-- | net/openldap20-server/files/slapd.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/openldap20-server/files/slapd.sh b/net/openldap20-server/files/slapd.sh index e6305bb..0e3601b 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 ;; |