Add patches/12_check_ups_perf_data_hresholds from upstream maint branch
This commit is contained in:
parent
8e98d7f62f
commit
0d487449b9
47
debian/patches/12_check_ups_perf_data_hresholds
vendored
Normal file
47
debian/patches/12_check_ups_perf_data_hresholds
vendored
Normal file
|
@ -0,0 +1,47 @@
|
|||
From 0b8041226446572eba0f82316716622f57d715e0 Mon Sep 17 00:00:00 2001
|
||||
From: Louis Sautier <sautier.louis@gmail.com>
|
||||
Date: Fri, 27 Mar 2015 13:16:42 +0100
|
||||
Subject: [PATCH] Fix incorrect performance data thresholds
|
||||
|
||||
Closes #1330
|
||||
---
|
||||
plugins/check_ups.c | 12 ++++++------
|
||||
1 file changed, 6 insertions(+), 6 deletions(-)
|
||||
|
||||
diff --git a/plugins/check_ups.c b/plugins/check_ups.c
|
||||
index 099881d..fd8c2d1 100644
|
||||
--- a/plugins/check_ups.c
|
||||
+++ b/plugins/check_ups.c
|
||||
@@ -242,8 +242,8 @@ main (int argc, char **argv)
|
||||
}
|
||||
xasprintf (&data, "%s %s", data,
|
||||
perfdata ("battery", (long)ups_battery_percent, "%",
|
||||
- check_warn, (long)(1000*warning_value),
|
||||
- check_crit, (long)(1000*critical_value),
|
||||
+ check_warn, (long)(warning_value),
|
||||
+ check_crit, (long)(critical_value),
|
||||
TRUE, 0, TRUE, 100));
|
||||
} else {
|
||||
xasprintf (&data, "%s %s", data,
|
||||
@@ -271,8 +271,8 @@ main (int argc, char **argv)
|
||||
}
|
||||
xasprintf (&data, "%s %s", data,
|
||||
perfdata ("load", (long)ups_load_percent, "%",
|
||||
- check_warn, (long)(1000*warning_value),
|
||||
- check_crit, (long)(1000*critical_value),
|
||||
+ check_warn, (long)(warning_value),
|
||||
+ check_crit, (long)(critical_value),
|
||||
TRUE, 0, TRUE, 100));
|
||||
} else {
|
||||
xasprintf (&data, "%s %s", data,
|
||||
@@ -308,8 +308,8 @@ main (int argc, char **argv)
|
||||
}
|
||||
xasprintf (&data, "%s %s", data,
|
||||
perfdata ("temp", (long)ups_temperature, tunits,
|
||||
- check_warn, (long)(1000*warning_value),
|
||||
- check_crit, (long)(1000*critical_value),
|
||||
+ check_warn, (long)(warning_value),
|
||||
+ check_crit, (long)(critical_value),
|
||||
TRUE, 0, FALSE, 0));
|
||||
} else {
|
||||
xasprintf (&data, "%s %s", data,
|
1
debian/patches/series
vendored
1
debian/patches/series
vendored
|
@ -2,3 +2,4 @@
|
|||
# commited upstream
|
||||
10_sslutils_checksslv3
|
||||
11_check_dhcp_parsing_option
|
||||
12_check_ups_perf_data_hresholds
|
||||
|
|
Loading…
Reference in a new issue