diff options
author | Sergey Matveychuk <sem@FreeBSD.org> | 2004-08-11 20:45:51 +0000 |
---|---|---|
committer | Sergey Matveychuk <sem@FreeBSD.org> | 2004-08-11 20:45:51 +0000 |
commit | 8a76d765b7ed52be97eda303f0a97037d59e5376 (patch) | |
tree | 67418a3ea8398e2323e23a9c16fea3d2dab0ba83 /net-mgmt/nagios-plugins | |
parent | Update to 2.01a36 which replaces the workaround of the FreeBSD port for (diff) |
Fix check_ircd which fails due to perl taint checks
if you have CDPATH set in your environment.
PR: ports/70320
Submitted by: Martin Tsachev <martin@mtweb.org>
Approved by: maintainer
Diffstat (limited to 'net-mgmt/nagios-plugins')
-rw-r--r-- | net-mgmt/nagios-plugins/Makefile | 2 | ||||
-rw-r--r-- | net-mgmt/nagios-plugins/files/patch-check_ircd.pl | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/net-mgmt/nagios-plugins/Makefile b/net-mgmt/nagios-plugins/Makefile index 4118d477e489..c70b54634647 100644 --- a/net-mgmt/nagios-plugins/Makefile +++ b/net-mgmt/nagios-plugins/Makefile @@ -7,7 +7,7 @@ PORTNAME= nagios-plugins PORTVERSION= 1.3.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= net-mgmt MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED} MASTER_SITE_SUBDIR= nagiosplug diff --git a/net-mgmt/nagios-plugins/files/patch-check_ircd.pl b/net-mgmt/nagios-plugins/files/patch-check_ircd.pl new file mode 100644 index 000000000000..98ac4ba8a32a --- /dev/null +++ b/net-mgmt/nagios-plugins/files/patch-check_ircd.pl @@ -0,0 +1,10 @@ +--- plugins-scripts/check_ircd.pl.orig Tue May 7 07:35:49 2002 ++++ plugins-scripts/check_ircd.pl Wed Aug 11 21:15:56 2004 +@@ -67,6 +67,7 @@ + $ENV{PATH} = ""; + $ENV{ENV} = ""; + $ENV{BASH_ENV} = ""; ++$ENV{CDPATH} = ""; + + # -----------------------------------------------------------------[ Global ]-- + |