summaryrefslogtreecommitdiff
path: root/net/nagios-plugin-mysql/patches
diff options
context:
space:
mode:
authorrodent <rodent>2015-04-03 18:21:12 +0000
committerrodent <rodent>2015-04-03 18:21:12 +0000
commitbea11ce42a7f96566829ad79cbe2b39056ab93ad (patch)
treeb30778af2ea81a2ef0a811dfcfc262cff48c49b5 /net/nagios-plugin-mysql/patches
parentfa27d84057d70a49afb9c9e47308ce62e25f9448 (diff)
downloadpkgsrc-bea11ce42a7f96566829ad79cbe2b39056ab93ad.tar.gz
Sync with net/nagios-plugins.
Diffstat (limited to 'net/nagios-plugin-mysql/patches')
-rw-r--r--net/nagios-plugin-mysql/patches/patch-al92
-rw-r--r--net/nagios-plugin-mysql/patches/patch-am56
-rw-r--r--net/nagios-plugin-mysql/patches/patch-lib_utils_base.c14
3 files changed, 0 insertions, 162 deletions
diff --git a/net/nagios-plugin-mysql/patches/patch-al b/net/nagios-plugin-mysql/patches/patch-al
deleted file mode 100644
index c673daf1ce5..00000000000
--- a/net/nagios-plugin-mysql/patches/patch-al
+++ /dev/null
@@ -1,92 +0,0 @@
-$NetBSD: patch-al,v 1.3 2011/04/08 22:48:41 morr Exp $
-
---- contrib/check_axis.sh.orig 2010-07-27 20:47:15.000000000 +0000
-+++ contrib/check_axis.sh
-@@ -5,7 +5,7 @@ port=$2
- usr=$3
- pass=$4
-
--if [ ! "$#" == "4" ]; then
-+if [ ! "$#" = "4" ]; then
- echo -e "\nYou did not supply enough command line arguments. \nUsage: ./check_axis.sh <host> <port> <username> <password> \n \nCheck_axis.sh checks the status of LPT ports on Axis print servers. \nIt was written by Tom De Blende (tom.deblende@village.uunet.be) in 2002. \n" && exit "3"
- fi
-
-@@ -27,7 +27,7 @@ fi
-
- lines=`cat $tempfile | grep -i $port`
- status=`echo $lines | awk '{ print $3 }'`
--if [ "$status" == "Printing" ]; then
-+if [ "$status" = "Printing" ]; then
- bytes=`echo $lines | awk '{ print $4 }'`;
- comments=`echo $lines | tr -d "
- " | awk '{ print $5 " " $6 }'`;
-@@ -42,48 +42,48 @@ if [ "$comma" -eq "1" ]; then
- fi
-
-
--if [ "$status" == "Available" ]; then
-- if [ "$comments" == "Paper out" ]; then
-+if [ "$status" = "Available" ]; then
-+ if [ "$comments" = "Paper out" ]; then
- exit="1" && stdio="WARNING - Out of paper.";
-- elif [ "$comments" == " " ]; then
-+ elif [ "$comments" = " " ]; then
- exit="0" && stdio="OK - Printer is available but returns no comments.";
-- elif [ "$comments" == "No error" ]; then
-+ elif [ "$comments" = "No error" ]; then
- exit="0" && stdio="OK - No error.";
-- elif [ "$comments" == "Ready " ]; then
-+ elif [ "$comments" = "Ready " ]; then
- exit="0" && stdio="OK - Ready.";
-- elif [ "$comments" == "Off line" ]; then
-+ elif [ "$comments" = "Off line" ]; then
- exit="1" && stdio="WARNING - Printer is off line.";
-- elif [ "$comments" == "Out of" ]; then
-+ elif [ "$comments" = "Out of" ]; then
- exit="1" && stdio="WARNING - Out of paper.";
-- elif [ "$comments" == "Busy Out" ]; then
-+ elif [ "$comments" = "Busy Out" ]; then
- exit="1" && stdio="WARNING - Busy, out of paper.";
-- elif [ "$comments" == "Printer off-line" ]; then
-+ elif [ "$comments" = "Printer off-line" ]; then
- exit="1" && stdio="WARNING - Printer is off line.";
-- elif [ "$comments" == "Printer fault" ]; then
-+ elif [ "$comments" = "Printer fault" ]; then
- exit="2" && stdio="CRITICAL - Printer fault.";
- else
- exit="3" && stdio="Comments: $comments";
- fi
--elif [ "$status" == "Printing" ]; then
-- if [ "$comments" == "Printer busy" ]; then
-+elif [ "$status" = "Printing" ]; then
-+ if [ "$comments" = "Printer busy" ]; then
- exit="0" && stdio="OK - PRINTING. Bytes printed: $bytes.";
-- elif [ "$comments" == "No error" ]; then
-+ elif [ "$comments" = "No error" ]; then
- exit="0" && stdio="OK - PRINTING. Bytes printed: $bytes.";
-- elif [ "$comments" == "Paper out" ]; then
-+ elif [ "$comments" = "Paper out" ]; then
- exit="1" && stdio="WARNING - PRINTING. Out of paper.";
-- elif [ "$comments" == "Out of" ]; then
-+ elif [ "$comments" = "Out of" ]; then
- exit="1" && stdio="WARNING - PRINTING. Out of paper. Bytes printed: $bytes.";
-- elif [ "$comments" == "Busy Out" ]; then
-+ elif [ "$comments" = "Busy Out" ]; then
- exit="1" && stdio="WARNING - Busy, out of paper.";
-- elif [ "$comments" == "Ready " ]; then
-+ elif [ "$comments" = "Ready " ]; then
- exit="0" && stdio="OK - PRINTING. Bytes printed: $bytes.";
-- elif [ "$comments" == "Printer off-line" ]; then
-+ elif [ "$comments" = "Printer off-line" ]; then
- exit="1" && stdio="WARNING - PRINTING. Printer is off line.";
-- elif [ "$comments" == "Busy " ]; then
-+ elif [ "$comments" = "Busy " ]; then
- exit="0" && stdio="OK - PRINTING. Busy. Bytes printed: $bytes.";
-- elif [ "$comments" == "Off line" ]; then
-+ elif [ "$comments" = "Off line" ]; then
- exit="1" && stdio="WARNING - PRINTING. Printer is off line.";
-- elif [ "$comments" == "Printer fault" ]; then
-+ elif [ "$comments" = "Printer fault" ]; then
- exit="2" && stdio="CRITICAL - PRINTING. Printer fault. Bytes printed: $bytes.";
- else
- exit="3" && stdio="Comments: $comments.";
diff --git a/net/nagios-plugin-mysql/patches/patch-am b/net/nagios-plugin-mysql/patches/patch-am
deleted file mode 100644
index 440b6569158..00000000000
--- a/net/nagios-plugin-mysql/patches/patch-am
+++ /dev/null
@@ -1,56 +0,0 @@
-$NetBSD: patch-am,v 1.2 2011/04/08 22:48:41 morr Exp $
-
---- contrib/check_mssql.sh.orig 2010-07-27 20:47:15.000000000 +0000
-+++ contrib/check_mssql.sh
-@@ -35,10 +35,10 @@ pswd=$3
- srv=$4
-
-
--if [ ! "$#" == "4" ]; then
-+if [ ! "$#" = "4" ]; then
- echo -e "\nYou did not supply enough arguments. \nUsage: $0 <host> <username> <password> <version> \n \n$0 checks Microsoft SQL Server connectivity. It works with versions 7 and 2000.\n\nYou need a working version of FreeTDS (http://www.freetds.org/) and tsql (included in FreeTDS 6.0+) to connect to the SQL server. \nIt was written by Tom De Blende (tom.deblende@village.uunet.be) in 2003. \n\nExample:\n $0 dbserver sa f00bar 2000\n" && exit "3"
-
--elif [ $tsqlcmd == "" ]; then
-+elif [ $tsqlcmd = "" ]; then
- echo -e "tsql not found! Please verify you have a working version of tsql (included in the FreeTDS version 6.0+) and enter the full path in the script." && exit "3"
-
- fi
-@@ -50,9 +50,9 @@ exit="3"
-
- tmpfile=`$mktempcmd /tmp/$hostname.XXXXXX`
-
--if [ $srv == "7" ]; then
-+if [ $srv = "7" ]; then
- spid=7
--elif [ $srv == "2000" ]; then
-+elif [ $srv = "2000" ]; then
- spid=50
- else
- echo -e "$srv is not a supported MS SQL Server version!" && exit "3"
-@@ -69,7 +69,7 @@ $tsqlcmd -S $hostname -U $usr -P $pswd <
-
- $grepcmd -q "Login failed for user" $errorfile
-
--if [ "$?" == "0" ]; then
-+if [ "$?" = "0" ]; then
- $rmcmd -f $tmpfile $resultfile $errorfile;
- echo CRITICAL - Could not make connection to SQL server. Login failed.;
- exit 2;
-@@ -77,7 +77,7 @@ fi
-
- $grepcmd -q "There was a problem connecting to the server" $errorfile
-
--if [ "$?" == "0" ]; then
-+if [ "$?" = "0" ]; then
- $rmcmd -f $tmpfile $resultfile $errorfile;
- echo CRITICAL - Could not make connection to SQL server. Incorrect server name or SQL service not running.;
- exit 2;
-@@ -85,7 +85,7 @@ fi
-
- resultfileln=`$catcmd $resultfile | $wccmd -l | $sedcmd 's/ //g'`
-
--if [ "$resultfileln" == "2" ]; then
-+if [ "$resultfileln" = "2" ]; then
- $rmcmd -f $tmpfile $resultfile $errorfile;
- echo CRITICAL - Could not make connection to SQL server. No data received from host.;
- exit 2;
diff --git a/net/nagios-plugin-mysql/patches/patch-lib_utils_base.c b/net/nagios-plugin-mysql/patches/patch-lib_utils_base.c
deleted file mode 100644
index e22b4b33b3f..00000000000
--- a/net/nagios-plugin-mysql/patches/patch-lib_utils_base.c
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-lib_utils_base.c,v 1.1 2012/05/24 15:24:06 marino Exp $
-
---- lib/utils_base.c.orig 2010-07-27 20:47:16.000000000 +0000
-+++ lib/utils_base.c
-@@ -28,6 +28,9 @@
- #include <stdarg.h>
- #include "utils_base.h"
- #include <fcntl.h>
-+#ifdef __DragonFly__
-+#include <sys/stat.h>
-+#endif
-
- #define np_free(ptr) { if(ptr) { free(ptr); ptr = NULL; } }
-