summaryrefslogtreecommitdiff
path: root/www/apache/files
diff options
context:
space:
mode:
authortron <tron>1999-05-11 18:38:31 +0000
committertron <tron>1999-05-11 18:38:31 +0000
commit63816e098812efd5b9a6dba751db77c3c35093ff (patch)
tree84f3da6da5f3e8b338eb46df6780fed783a246f9 /www/apache/files
parent70d690efcd4be0571af3f71dd4e46087bcc16788 (diff)
downloadpkgsrc-63816e098812efd5b9a6dba751db77c3c35093ff.tar.gz
Redirect output of "apachectl" to "/dev/null".
Diffstat (limited to 'www/apache/files')
-rw-r--r--www/apache/files/apache.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/www/apache/files/apache.sh b/www/apache/files/apache.sh
index bd86c1711ce..65e77c105ef 100644
--- a/www/apache/files/apache.sh
+++ b/www/apache/files/apache.sh
@@ -1,10 +1,10 @@
#!/bin/sh
#
-# $NetBSD: apache.sh,v 1.1 1999/05/11 18:32:24 tron Exp $
+# $NetBSD: apache.sh,v 1.2 1999/05/11 18:38:31 tron Exp $
#
if [ -x @PREFIX@/sbin/httpd -a -f @PREFIX@/etc/httpd/httpd.conf ]
then
- @PREFIX@/sbin/apachectl start
+ @PREFIX@/sbin/apachectl start >/dev/null
echo -n ' apache'
fi
exit 0