diff options
author | ache <ache@FreeBSD.org> | 2000-07-18 10:17:39 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2000-07-18 10:17:39 +0000 |
commit | 157079dddc6ec9b1ee61df3a316a955ee061a0b1 (patch) | |
tree | 3c2b4e33c6b44385e9657494c9c190c08d11b2f9 /www/apache20 | |
parent | ed942b71e7f4f3dd05eb979c14d48d24f18bc6b0 (diff) | |
download | FreeBSD-ports-157079dddc6ec9b1ee61df3a316a955ee061a0b1.zip FreeBSD-ports-157079dddc6ec9b1ee61df3a316a955ee061a0b1.tar.gz |
Fix path to apachectl in stop
Diffstat (limited to 'www/apache20')
-rw-r--r-- | www/apache20/files/apache.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/apache20/files/apache.sh b/www/apache20/files/apache.sh index 6199182..ca43218 100644 --- a/www/apache20/files/apache.sh +++ b/www/apache20/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 |