Hello community,
here is the log from the commit of package monitoring-plugins-zypper for
openSUSE:Factory checked in at 2017-12-01 15:54:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/monitoring-plugins-zypper (Old)
and /work/SRC/openSUSE:Factory/.monitoring-plugins-zypper.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "monitoring-plugins-zypper"
Fri Dec 1 15:54:28 2017 rev:11 rq:547050 version:1.93
Changes:
--------
---
/work/SRC/openSUSE:Factory/monitoring-plugins-zypper/monitoring-plugins-zypper.changes
2017-07-02 13:38:17.662078833 +0200
+++
/work/SRC/openSUSE:Factory/.monitoring-plugins-zypper.new/monitoring-plugins-zypper.changes
2017-12-01 15:55:00.429081219 +0100
@@ -1,0 +2,17 @@
+Fri Nov 24 11:05:40 CET 2017 - [email protected]
+
+- move restart stuff from post to postun where it belongs
+- use proper macros for systemd restart
+
+-------------------------------------------------------------------
+Tue Oct 10 09:14:23 UTC 2017 - [email protected]
+
+- update to 1.93
+ + remove unsupported openSUSE 42.1 and SLE-10-SP4
+
+-------------------------------------------------------------------
+Tue Jul 25 18:02:13 CEST 2017 - [email protected]
+
+- use systemctl for try-restart call for apparmor in postinstall
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ monitoring-plugins-zypper.spec ++++++
--- /var/tmp/diff_new_pack.w8HlAg/_old 2017-12-01 15:55:01.201053440 +0100
+++ /var/tmp/diff_new_pack.w8HlAg/_new 2017-12-01 15:55:01.201053440 +0100
@@ -26,7 +26,7 @@
Summary: Check for software updates via zypper
License: BSD-3-Clause
Group: System/Monitoring
-Version: 1.92
+Version: 1.93
Release: 0
Url: http://en.opensuse.org/Monitoring-plugins-zypper
Source0: check_zypper.pl
@@ -111,8 +111,12 @@
%clean
rm -rf %buildroot
-%post
-%{_sysconfdir}/init.d/boot.apparmor try-restart || echo "restarting
boot.apparmor failed" >&2
+%postun
+%if %{with_systemd}
+%service_del_postun apparmor.service
+%else
+%{restart_on_update boot.apparmor}
+%endif
%files
%defattr(-,root,root)
++++++ check_zypper.pl ++++++
--- /var/tmp/diff_new_pack.w8HlAg/_old 2017-12-01 15:55:01.285050417 +0100
+++ /var/tmp/diff_new_pack.w8HlAg/_new 2017-12-01 15:55:01.289050273 +0100
@@ -51,7 +51,7 @@
# constants
$PROGNAME = "check_zypper";
-$VERSION = '1.92';
+$VERSION = '1.93';
$DEBUG = 0;
# variables
@@ -93,8 +93,8 @@
0 => 'OK',
);
our %supported_release = (
- 'openSUSE' => [ '42.1', '42.2', '42.3' ],
- 'SLE' => [ '10.4', '11.4', '12.2', '12.3' ],
+ 'openSUSE' => [ '42.2', '42.3' ],
+ 'SLE' => [ '11.4', '12.2', '12.3' ],
'Tumbleweed' => ['2017*'],
);
$opt_w = 'recommended,optional,unsupported,local_package';