openbsd-ports/security/nessus/plugins/patches/patch-plugins_make_world
sturm 12e3771b9b update to nessus 2.2.4
- this version only comes with GPLed plugins
- for easier maintenance split the port into several subports

from new maintainer Alexandre Anriot <aanriot at atlantilde.com>
2005-05-16 16:02:56 +00:00

24 lines
547 B
Plaintext

$OpenBSD: patch-plugins_make_world,v 1.1.1.1 2005/05/16 16:03:04 sturm Exp $
--- plugins/make_world.orig Sat May 7 09:38:36 2005
+++ plugins/make_world Sat May 7 09:41:05 2005
@@ -11,18 +11,13 @@ case "$os" in
;;
esac
-for i in *;
-do if [ -d $i -a $i != CVS ]; then
- if [ "$i" != "3com_hub" ];
- then
+for i in hydra nessus_tcp_scanner nikto_wrapper nmap_tcp_connect nmap_wrapper; do
cd $i
${MAKE:-make} $MAKEFLAG $1
if [ $? -ne 0 ];then
BADPLUGINS="$BADPLUGINS $i"
fi
cd ..
- fi
-fi
done
if test -n "$BADPLUGINS"; then