summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2006-12-07 22:38:18 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2006-12-07 22:38:18 (GMT)
commit8f253be7a4ae29a017566cc6cef01085a0d10d56 (patch)
tree5e3fce403ae8e6d95b7d61d5ed2852cf2ad04701
parentdf3662bf3ac0d071b6f0b2d4e5bd45942667e75e (diff)
downloadmonitoring-plugins-8f253be7a4ae29a017566cc6cef01085a0d10d56.tar.gz
Fixed HP/UX's swapinfo command for check_procs (Dick van den Burg - 1573700)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1547 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r--CHANGES6
-rw-r--r--THANKS.in1
-rw-r--r--configure.in2
3 files changed, 5 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES
index 74c5a66..ea461db 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,10 +1,10 @@
1This file documents the major additions and syntax changes between releases. 1This file documents the major additions and syntax changes between releases.
2 2
3?? 3?? ??
4 Reduced number of DNS lookups in check_ping and netutils.c for IPv6 configurations 4 Reduced number of DNS lookups in check_ping and netutils.c for IPv6 configurations
5
61.4.6
7 Fixed compile problems with *BSD re: alloca.h 5 Fixed compile problems with *BSD re: alloca.h
6 Fixed Solaris problems with check_swap (tested on Solaris 9)
7 Fixed check_swap for HP/UX where swapinfo command was incorrect
8 8
91.4.5 91.4.5
10 Fixed bug in perl's is_hostname routine 10 Fixed bug in perl's is_hostname routine
diff --git a/THANKS.in b/THANKS.in
index 4c86411..ae5ba1f 100644
--- a/THANKS.in
+++ b/THANKS.in
@@ -202,3 +202,4 @@ Markus Baertschi
202Florian Gleixner 202Florian Gleixner
203Pawel Malachowski 203Pawel Malachowski
204Duncan Ferguson 204Duncan Ferguson
205Dick van den Burg
diff --git a/configure.in b/configure.in
index 706ded1..356e4e3 100644
--- a/configure.in
+++ b/configure.in
@@ -1439,7 +1439,7 @@ then
1439elif [$PATH_TO_SWAPINFO -dfM 2>/dev/null | egrep -i "^TYPE +AVAIL +USED +FREE" >/dev/null] 1439elif [$PATH_TO_SWAPINFO -dfM 2>/dev/null | egrep -i "^TYPE +AVAIL +USED +FREE" >/dev/null]
1440then 1440then
1441 ac_cv_have_swap=yes 1441 ac_cv_have_swap=yes
1442 ac_cv_swap_command="$PATH_TO_SWAPINFO -dfM", 1442 ac_cv_swap_command="$PATH_TO_SWAPINFO -dfM"
1443 ac_cv_swap_format=["%*s %f %*d %f"] 1443 ac_cv_swap_format=["%*s %f %*d %f"]
1444 ac_cv_swap_conv=1024 1444 ac_cv_swap_conv=1024
1445 AC_MSG_RESULT([using HP-UX format swapinfo]) 1445 AC_MSG_RESULT([using HP-UX format swapinfo])