Hello community,

here is the log from the commit of package podman for openSUSE:Factory checked 
in at 2020-02-25 16:03:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/podman (Old)
 and      /work/SRC/openSUSE:Factory/.podman.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "podman"

Tue Feb 25 16:03:24 2020 rev:55 rq:777935 version:1.8.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/podman/podman.changes    2020-02-15 
22:23:36.147250752 +0100
+++ /work/SRC/openSUSE:Factory/.podman.new.26092/podman.changes 2020-02-25 
16:04:14.968319900 +0100
@@ -1,0 +2,10 @@
+Thu Feb 20 15:57:54 UTC 2020 - Ralf Haferkamp <[email protected]>
+
+- The name of the cni-bridge in the default config changed from
+  "cni0" to "podman-cni0" with podman-1.6.0. Add a %trigger to
+  rename the bridge in the system to the new default if it exists.
+  The trigger is only excuted when updating podman-cni-config 
+  from something older than 1.6.0. This is mainly needed for SLE
+  where we're updating from 1.4.4 to 1.8.0 (bsc#1160460).
+
+-------------------------------------------------------------------
@@ -6 +16 @@
-- Update podman to v1.8.0:
+- Update podman to v1.8.0 (bsc#1160460):
@@ -524,0 +535,6 @@
+Mon Sep  2 12:02:44 UTC 2019 - Sascha Grunert <[email protected]>
+
+- Add patch for CVE-2019-10214. bsc#1144065
+  + CVE-2019-10214.patch
+
+-------------------------------------------------------------------
@@ -693,0 +710,6 @@
+
+--------------------------------------------------------------------
+Tue Jul 30 07:46:16 UTC 2019 - Sascha Grunert <[email protected]>
+
+- Remove fuse-overlayfs because it's (currently) an unsatisfied dependency on
+  SLE (bsc#1143386)

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

Other differences:
------------------
++++++ podman.spec ++++++
--- /var/tmp/diff_new_pack.FCbKpj/_old  2020-02-25 16:04:16.208320254 +0100
+++ /var/tmp/diff_new_pack.FCbKpj/_new  2020-02-25 16:04:16.212320255 +0100
@@ -87,6 +87,8 @@
 Summary:        Basic CNI configuration for podman
 Group:          System/Management
 Requires:       %{name} = %{version}
+# iproute2 is needed by the %triggerun scriplet
+Requires:       iproute2
 BuildArch:      noarch
 
 %description cni-config
@@ -195,4 +197,14 @@
 %postun
 %service_del_postun io.podman.service io.podman.socket
 
+%triggerun cni-config -- %{name}-cni-config < 1.6.0
+# The name of the network bridge changed from cni0 to podman-cni0 with
+# podman 1.6. We need to rename the existing bridge to the new name to
+# to avoid network issues after upgrade
+if ip link show dev cni0 > /dev/null 2>&1; then
+    ip link set dev cni0 down
+    ip link set dev cni0 name cni-podman0
+    ip link set dev cni-podman0 up
+fi
+
 %changelog


Reply via email to