diff options
author | Dmitry Sivachenko <demon@FreeBSD.org> | 2000-12-31 11:50:50 +0000 |
---|---|---|
committer | Dmitry Sivachenko <demon@FreeBSD.org> | 2000-12-31 11:50:50 +0000 |
commit | 38678d24b308d6c70628d9452e133435e2fe2d2d (patch) | |
tree | 07d272c305282e0bbc22a329961ca1c5ecf25ed8 | |
parent | Update to 2.2. (diff) |
Redirect output from apachectl to /dev/null.
Notes
Notes:
svn path=/head/; revision=36527
-rw-r--r-- | russian/apache13-modssl/files/rc.apache.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/russian/apache13-modssl/files/rc.apache.sh b/russian/apache13-modssl/files/rc.apache.sh index 5ea30f522c40..d8dc42ae1d5f 100644 --- a/russian/apache13-modssl/files/rc.apache.sh +++ b/russian/apache13-modssl/files/rc.apache.sh @@ -2,12 +2,11 @@ case $1 in start) - !!PREFIX!!/sbin/apachectl startssl - echo -n ' apache' + !!PREFIX!!/sbin/apachectl startssl > /dev/null && echo -n ' apache' ;; stop) - !!PREFIX!!/sbin/apachectl stop + !!PREFIX!!/sbin/apachectl stop > /dev/null ;; *) |