diff options
author | Ade Lovett <ade@FreeBSD.org> | 2000-11-15 16:10:38 +0000 |
---|---|---|
committer | Ade Lovett <ade@FreeBSD.org> | 2000-11-15 16:10:38 +0000 |
commit | 7102926a312e7d8f1dd4018bc1d54bf7aac7410e (patch) | |
tree | 221bb0cadfb9c0c42fb670bedb3b5ffa95d321bb /www/apache13-modssl/files/apache.sh | |
parent | Update to version 0.4.4 (diff) |
Gently persuade apache13-modssl to install in the same filesystem
space as www/apache13 does, so that other apache-dependendent ports
DTRT regardless of which one is installed.
Nothing concrete (other than we're working on a real cleanup of the
apache ports) has been heard from any of the maintainers. Obviously
that is the best solution, but with 4.2-RELEASE just around the
corner, we have an opportunity here to at least remove a few bogons.
Both times I've raised this issue on -ports, however, there has been
significant interest in the patches, and now plenty of confirmations
that the modifications do not break the port in other ways.
Notes
Notes:
svn path=/head/; revision=35170
Diffstat (limited to 'www/apache13-modssl/files/apache.sh')
-rw-r--r-- | www/apache13-modssl/files/apache.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/apache13-modssl/files/apache.sh b/www/apache13-modssl/files/apache.sh index 619918254852..8e6e38810fa8 100644 --- a/www/apache13-modssl/files/apache.sh +++ b/www/apache13-modssl/files/apache.sh @@ -7,10 +7,10 @@ fi case "$1" in start) - [ -x ${PREFIX}/sbin/apachectl ] && ${PREFIX}/sbin/apachectl start > /dev/null && echo -n ' apache' + [ -x ${PREFIX}/sbin/apachectl ] && ${PREFIX}/sbin/apachectl startssl > /dev/null && echo -n ' apache' ;; stop) - [ -r /var/run/httpd.pid ] && ${PREFIX}/apachectl stop > /dev/null && echo -n ' apache' + [ -r /var/run/httpd.pid ] && ${PREFIX}/sbin/apachectl stop > /dev/null && echo -n ' apache' ;; *) echo "Usage: `basename $0` {start|stop}" >&2 |