diff options
author | tron <tron@pkgsrc.org> | 1999-05-11 18:38:31 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1999-05-11 18:38:31 +0000 |
commit | fbd3923a664e009d5caf721aa508a0a6306b4747 (patch) | |
tree | 84f3da6da5f3e8b338eb46df6780fed783a246f9 /www/apache | |
parent | 40c91b2f8d62355ea9ad41cfc5e942f47e288b58 (diff) | |
download | pkgsrc-fbd3923a664e009d5caf721aa508a0a6306b4747.tar.gz |
Redirect output of "apachectl" to "/dev/null".
Diffstat (limited to 'www/apache')
-rw-r--r-- | www/apache/files/apache.sh | 4 |
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 |