diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 2000-07-18 10:17:39 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 2000-07-18 10:17:39 +0000 |
commit | c8a277dd4ab8526b0e9a859597ab1cca98f76188 (patch) | |
tree | 742f8998795e1e15e45fc742b29b0ea5b57a51c1 /www/apache13 | |
parent | 802185c16ac893316a6cd0aa3b7def6eb0565202 (diff) | |
download | ports-c8a277dd4ab8526b0e9a859597ab1cca98f76188.tar.gz ports-c8a277dd4ab8526b0e9a859597ab1cca98f76188.zip |
Fix path to apachectl in stop
Notes
Notes:
svn path=/head/; revision=30784
Diffstat (limited to 'www/apache13')
-rw-r--r-- | www/apache13/files/apache.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/apache13/files/apache.sh b/www/apache13/files/apache.sh index 619918254852..ca4321814e5a 100644 --- a/www/apache13/files/apache.sh +++ b/www/apache13/files/apache.sh @@ -10,7 +10,7 @@ start) [ -x ${PREFIX}/sbin/apachectl ] && ${PREFIX}/sbin/apachectl start > /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 |