diff options
author | ache <ache@FreeBSD.org> | 2000-07-18 18:17:39 +0800 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2000-07-18 18:17:39 +0800 |
commit | 157079dddc6ec9b1ee61df3a316a955ee061a0b1 (patch) | |
tree | 3c2b4e33c6b44385e9657494c9c190c08d11b2f9 /www | |
parent | ed942b71e7f4f3dd05eb979c14d48d24f18bc6b0 (diff) | |
download | freebsd-ports-gnome-157079dddc6ec9b1ee61df3a316a955ee061a0b1.tar.gz freebsd-ports-gnome-157079dddc6ec9b1ee61df3a316a955ee061a0b1.tar.zst freebsd-ports-gnome-157079dddc6ec9b1ee61df3a316a955ee061a0b1.zip |
Fix path to apachectl in stop
Diffstat (limited to 'www')
-rw-r--r-- | www/apache13/files/apache.sh | 2 | ||||
-rw-r--r-- | www/apache2/files/apache.sh | 2 | ||||
-rw-r--r-- | www/apache20/files/apache.sh | 2 | ||||
-rw-r--r-- | www/apache21/files/apache.sh | 2 | ||||
-rw-r--r-- | www/apache22/files/apache.sh | 2 |
5 files changed, 5 insertions, 5 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 diff --git a/www/apache2/files/apache.sh b/www/apache2/files/apache.sh index 619918254852..ca4321814e5a 100644 --- a/www/apache2/files/apache.sh +++ b/www/apache2/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 diff --git a/www/apache20/files/apache.sh b/www/apache20/files/apache.sh index 619918254852..ca4321814e5a 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 diff --git a/www/apache21/files/apache.sh b/www/apache21/files/apache.sh index 619918254852..ca4321814e5a 100644 --- a/www/apache21/files/apache.sh +++ b/www/apache21/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 diff --git a/www/apache22/files/apache.sh b/www/apache22/files/apache.sh index 619918254852..ca4321814e5a 100644 --- a/www/apache22/files/apache.sh +++ b/www/apache22/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 |