aboutsummaryrefslogtreecommitdiffstats
path: root/russian
diff options
context:
space:
mode:
authordemon <demon@FreeBSD.org>2000-12-31 19:50:50 +0800
committerdemon <demon@FreeBSD.org>2000-12-31 19:50:50 +0800
commit72cfd4d2c52602d24df495c1618389fa686cc41e (patch)
tree24e0bfdd0d37d98451ea7ed5d2b4488123944580 /russian
parent37526cf77d62993fcb8ee06c084a70e66bd0eed7 (diff)
downloadfreebsd-ports-gnome-72cfd4d2c52602d24df495c1618389fa686cc41e.tar.gz
freebsd-ports-gnome-72cfd4d2c52602d24df495c1618389fa686cc41e.tar.zst
freebsd-ports-gnome-72cfd4d2c52602d24df495c1618389fa686cc41e.zip
Redirect output from apachectl to /dev/null.
Diffstat (limited to 'russian')
-rw-r--r--russian/apache13-modssl/files/rc.apache.sh5
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
;;
*)