[monitoring-plugins] Disable Perl's "taint" checks

Holger Weiss git at monitoring-plugins.org
Fri Feb 28 22:10:07 CET 2014


 Module: monitoring-plugins
 Branch: master
 Commit: 0c5b362c3047c30326a748b154bc692b083d38ed
 Author: Holger Weiss <holger at zedat.fu-berlin.de>
   Date: Fri Feb 28 22:05:18 2014 +0100
    URL: https://www.monitoring-plugins.org/repositories/monitoring-plugins/commit/?id=0c5b362

Disable Perl's "taint" checks

Perl's "taint" checks don't like `use lib "$FindBin::Bin"'.

Cf. http://www.perlmonks.org/?node_id=585299

---

 plugins-scripts/check_breeze.pl | 2 +-
 plugins-scripts/check_ircd.pl   | 2 +-
 plugins-scripts/check_wave.pl   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/plugins-scripts/check_breeze.pl b/plugins-scripts/check_breeze.pl
index 38badeb..12a60ee 100755
--- a/plugins-scripts/check_breeze.pl
+++ b/plugins-scripts/check_breeze.pl
@@ -1,4 +1,4 @@
-#!@PERL@ -wT
+#!@PERL@ -w
 
 
 use strict;
diff --git a/plugins-scripts/check_ircd.pl b/plugins-scripts/check_ircd.pl
index c14980c..afedfb9 100755
--- a/plugins-scripts/check_ircd.pl
+++ b/plugins-scripts/check_ircd.pl
@@ -1,4 +1,4 @@
-#!@PERL@ -wT
+#!@PERL@ -w
 
 # -----------------------------------------------------------------------------
 # File Name:		check_ircd.pl
diff --git a/plugins-scripts/check_wave.pl b/plugins-scripts/check_wave.pl
index 5fa78e3..979416e 100755
--- a/plugins-scripts/check_wave.pl
+++ b/plugins-scripts/check_wave.pl
@@ -1,4 +1,4 @@
-#!@PERL@ -wT
+#!@PERL@ -w
 #
 
 



More information about the Commits mailing list