Hello community,

here is the log from the commit of package monitoring-plugins for 
openSUSE:Factory checked in at 2019-04-17 10:08:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/monitoring-plugins (Old)
 and      /work/SRC/openSUSE:Factory/.monitoring-plugins.new.17052 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "monitoring-plugins"

Wed Apr 17 10:08:08 2019 rev:13 rq:694443 version:2.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/monitoring-plugins/monitoring-plugins.changes    
2019-02-08 12:11:54.245502979 +0100
+++ 
/work/SRC/openSUSE:Factory/.monitoring-plugins.new.17052/monitoring-plugins.changes
 2019-04-17 10:08:10.286766341 +0200
@@ -1,0 +2,17 @@
+Sun Apr 14 15:57:26 UTC 2019 - Christian Boltz <[email protected]>
+
+- update AppArmor profiles for usrMerge (related to boo#1132350)
+  - grep in check_cups
+  - ps in check_procs and check_procs.sle15
+
+-------------------------------------------------------------------
+Fri Apr 12 14:20:08 CEST 2019 - [email protected]
+
+- update usr.lib.nagios.plugins.check_procs to bash in /usr 
+
+-------------------------------------------------------------------
+Tue Apr  9 12:19:20 UTC 2019 - Dirk Stoecker <[email protected]>
+
+- support IPv4 ping for dual stacked host again: check_ping_fix_ip4.patch
+
+-------------------------------------------------------------------

New:
----
  check_ping_fix_ip4.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ monitoring-plugins.spec ++++++
--- /var/tmp/diff_new_pack.90Xjp3/_old  2019-04-17 10:08:15.494772351 +0200
+++ /var/tmp/diff_new_pack.90Xjp3/_new  2019-04-17 10:08:15.494772351 +0200
@@ -62,6 +62,8 @@
 Source60:       nrpe-check_ups
 # PATCH-FIX-UPSTREAM Quote the options comming in from users (path names might 
contain whitespaces)
 Patch1:         %{name}-2.1.1-check_logfile.patch
+# PATCH-FIX-UPSTREAM Allow to ping IPv4 with check_ping again for dual stack 
hosts: https://github.com/monitoring-plugins/monitoring-plugins/issues/1550
+Patch2:         check_ping_fix_ip4.patch
 # PATCH-FIX-OPENSUSE do not use chown in Makefile (not possible when building 
as normal user)
 Patch6:         %{name}-1.4.6-no_chown.patch
 # PATCH-FIX-UPSTREAM Use correct pointer
@@ -1102,6 +1104,7 @@
 done
 
 %patch1 -p1
+%patch2 -p1
 %patch6 -p1
 %patch11 -p1
 %patch15 -p1

++++++ check_ping_fix_ip4.patch ++++++
diff -ur monitoring-plugins-2.2/plugins/check_ping.c 
monitoring-plugins-2.2_fix/plugins/check_ping.c
--- monitoring-plugins-2.2/plugins/check_ping.c 2016-11-29 09:45:08.000000000 
+0100
+++ monitoring-plugins-2.2_fix/plugins/check_ping.c     2019-04-09 
14:09:57.574380368 +0200
@@ -128,6 +128,11 @@
 #else
                xasprintf (&cmd, rawcmd, addresses[i], max_packets);
 #endif
+               if (address_family == AF_INET) {
+                       free(rawcmd);
+                       rawcmd = cmd;
+                       xasprintf (&cmd, "%s -4", rawcmd);
+               }
 
                if (verbose >= 2)
                        printf ("CMD: %s\n", cmd);
++++++ usr.lib.nagios.plugins.check_cups ++++++
--- /var/tmp/diff_new_pack.90Xjp3/_old  2019-04-17 10:08:15.818772725 +0200
+++ /var/tmp/diff_new_pack.90Xjp3/_new  2019-04-17 10:08:15.818772725 +0200
@@ -10,8 +10,8 @@
   network inet dgram,
   network inet stream,
 
-  /bin/bash rix,
-  /bin/grep rix,
+  /{usr/,}bin/bash rix,
+  /{usr/,}bin/grep rix,
   /{usr/,}bin/which rix,
   /{usr/,}bin/lpstat rix,
   /{usr/,}bin/basename rix,

++++++ usr.lib.nagios.plugins.check_procs ++++++
--- /var/tmp/diff_new_pack.90Xjp3/_old  2019-04-17 10:08:15.890772807 +0200
+++ /var/tmp/diff_new_pack.90Xjp3/_new  2019-04-17 10:08:15.890772807 +0200
@@ -6,7 +6,7 @@
 
   capability sys_ptrace,
 
-  /bin/ps rix,
+  /{usr/,}bin/ps rix,
   /proc/ r,
   /proc/** r,
   /usr/lib/nagios/plugins/check_procs mr,

++++++ usr.lib.nagios.plugins.check_procs.sle15 ++++++
--- /var/tmp/diff_new_pack.90Xjp3/_old  2019-04-17 10:08:15.902772821 +0200
+++ /var/tmp/diff_new_pack.90Xjp3/_new  2019-04-17 10:08:15.902772821 +0200
@@ -7,7 +7,7 @@
   ptrace,
   ptrace (read) peer=unconfined,
 
-  /bin/ps rix,
+  /{usr/,}bin/ps rix,
   /proc/ r,
   /proc/** r,
   /usr/lib/nagios/plugins/check_procs mr,


Reply via email to