diff options
author | Clement Laforet <clement@FreeBSD.org> | 2007-03-17 16:03:24 +0000 |
---|---|---|
committer | Clement Laforet <clement@FreeBSD.org> | 2007-03-17 16:03:24 +0000 |
commit | 4598cbe1270b0b1ca773f4f95d39a0b66e8e5266 (patch) | |
tree | b385140b745a2da00d2d810e60263e149bec081d /www/apache22/files | |
parent | e902286b8a7312a2bad592258ba3cc77e1b82c4f (diff) |
- Ensure we use correct OpenSSL libs [1]
- Fix multiprofiles support in rc script [2]
PR: ports/100315 [1],
ports/109536 [2]
Submitted by: Jo Rhett <jrhett@svcolo.com> [1]
Eygene Ryabinkin <rea-fbsd@codelabs.ru> [2]
Notes
Notes:
svn path=/head/; revision=187576
Diffstat (limited to 'www/apache22/files')
-rw-r--r-- | www/apache22/files/apache22.sh.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/apache22/files/apache22.sh.in b/www/apache22/files/apache22.sh.in index 8ef0b34fae46..87ad36a1023a 100644 --- a/www/apache22/files/apache22.sh.in +++ b/www/apache22/files/apache22.sh.in @@ -1,6 +1,6 @@ #!/bin/sh # -# $FreeBSD: /tmp/pcvs/ports/www/apache22/files/Attic/apache22.sh.in,v 1.2 2007-01-13 12:13:12 clement Exp $ +# $FreeBSD: /tmp/pcvs/ports/www/apache22/files/Attic/apache22.sh.in,v 1.3 2007-03-17 16:03:24 clement Exp $ # # PROVIDE: apache22 @@ -91,7 +91,7 @@ else if [ "x$1" != "xrestart" ]; then for profile in ${apache22_profiles}; do echo "===> apache22 profile: ${profile}" - %%PREFIX%%/etc/rc.d/apache22.sh $1 ${profile} + %%PREFIX%%/etc/rc.d/apache22%%RC_SUBR_SUFFIX%% $1 ${profile} retcode="$?" if [ "0${retcode}" -ne 0 ]; then failed="${profile} (${retcode}) ${failed:-}" |