Hello community,
here is the log from the commit of package monitoring-plugins-sentry3 for
openSUSE:Factory checked in at 2017-07-04 09:11:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/monitoring-plugins-sentry3 (Old)
and /work/SRC/openSUSE:Factory/.monitoring-plugins-sentry3.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "monitoring-plugins-sentry3"
Tue Jul 4 09:11:03 2017 rev:2 rq:507793 version:2012
Changes:
--------
---
/work/SRC/openSUSE:Factory/monitoring-plugins-sentry3/monitoring-plugins-sentry3.changes
2016-02-11 12:36:49.000000000 +0100
+++
/work/SRC/openSUSE:Factory/.monitoring-plugins-sentry3.new/monitoring-plugins-sentry3.changes
2017-07-04 09:11:26.725740575 +0200
@@ -1,0 +2,5 @@
+Mon Jul 3 11:54:36 UTC 2017 - [email protected]
+
+- use complete options for rrdtool (lower-limit instead of lower, etc)
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ monitoring-plugins-sentry3.spec ++++++
--- /var/tmp/diff_new_pack.L6aZzc/_old 2017-07-04 09:11:27.393646651 +0200
+++ /var/tmp/diff_new_pack.L6aZzc/_new 2017-07-04 09:11:27.393646651 +0200
@@ -1,7 +1,7 @@
#
# spec file for package monitoring-plugins-sentry3
#
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -15,13 +15,14 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
+
Name: monitoring-plugins-sentry3
Version: 2012
-Release: 100
-License: GPL-2.0+
+Release: 0
Summary: Monitor Servertech devices that use the Sentry3 MIB
-Url: http://www.linuxhomenetworking.com/
+License: GPL-2.0+
Group: System/Monitoring
+Url: http://www.linuxhomenetworking.com/
Requires: perl(Nagios::Plugin) >= 0.36
Requires: perl(Net::SNMP)
Source0: check_sentry3
++++++ gauge_single_rrd_one_chart_per_rra.php ++++++
--- /var/tmp/diff_new_pack.L6aZzc/_old 2017-07-04 09:11:27.461637090 +0200
+++ /var/tmp/diff_new_pack.L6aZzc/_new 2017-07-04 09:11:27.461637090 +0200
@@ -47,18 +47,18 @@
}
if ($CRIT_MAX[$i] != "") {
$critical = $CRIT_MAX[$i];
- $upper = " --upper=" . $CRIT_MAX[$i];
+ $upper = " --upper-limit=" . $CRIT_MAX[$i];
}
if ($CRIT_MIN[$i] != "") {
$criticallower = $CRIT_MIN[$i];
- $lower = " --lower=" . $criticallower;
+ $lower = " --lower-limit=" . $criticallower;
}
if ($MIN[$i] != "") {
- $lower = " --lower=" . $MIN[$i];
+ $lower = " --lower-limit=" . $MIN[$i];
$minimum = $MIN[$i];
}
if ($MAX[$i] != "") {
- $upper = " --upper=" . $MAX[$i];
+ $upper = " --upper-limit=" . $MAX[$i];
$maximum = $MAX[$i];
}
if ($UNIT[$i] == "%%") {