diff options
author | clement <clement@FreeBSD.org> | 2006-01-23 19:37:04 +0800 |
---|---|---|
committer | clement <clement@FreeBSD.org> | 2006-01-23 19:37:04 +0800 |
commit | 4f383c0714450609cfc57a47981d20f99d023152 (patch) | |
tree | c794dd1aba7d49b668ffd5bdabe157e17d9c951f /www/apache22 | |
parent | c14d9935af55030c0a804798062a635eb68034b5 (diff) | |
download | freebsd-ports-gnome-4f383c0714450609cfc57a47981d20f99d023152.tar.gz freebsd-ports-gnome-4f383c0714450609cfc57a47981d20f99d023152.tar.zst freebsd-ports-gnome-4f383c0714450609cfc57a47981d20f99d023152.zip |
- add -v to kldload to prevent loading accf_http module if it's statically
built into kernel
Reported by: many
Diffstat (limited to 'www/apache22')
-rw-r--r-- | www/apache22/files/apache.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/apache22/files/apache.sh b/www/apache22/files/apache.sh index 1b7b2d258bfe..03f61a1c17fd 100644 --- a/www/apache22/files/apache.sh +++ b/www/apache22/files/apache.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# $FreeBSD: /tmp/pcvs/ports/www/apache22/files/Attic/apache.sh,v 1.12 2006-01-15 01:11:11 clement Exp $ +# $FreeBSD: /tmp/pcvs/ports/www/apache22/files/Attic/apache.sh,v 1.13 2006-01-23 11:37:04 clement Exp $ # # PROVIDE: apache22 @@ -52,7 +52,7 @@ apache22_accf() { retcode=0 if checkyesno apache22_http_accept_enable then - /sbin/kldstat | grep accf_http 2>&1 > /dev/null + /sbin/kldstat -v | grep accf_http 2>&1 > /dev/null retcode=${?} if [ ${retcode} -ne 0 ] then |