Hello community, here is the log from the commit of package cloud-init for openSUSE:Factory checked in at 2020-10-20 16:03:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/cloud-init (Old) and /work/SRC/openSUSE:Factory/.cloud-init.new.3486 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cloud-init" Tue Oct 20 16:03:17 2020 rev:75 rq:842287 version:20.2 Changes: -------- --- /work/SRC/openSUSE:Factory/cloud-init/cloud-init.changes 2020-08-14 09:29:40.224285911 +0200 +++ /work/SRC/openSUSE:Factory/.cloud-init.new.3486/cloud-init.changes 2020-10-20 16:10:18.078006691 +0200 @@ -1,0 +2,7 @@ +Sat Oct 17 10:25:30 UTC 2020 - Robert Schweikert <rjsch...@suse.com> + +- Update cloud-init-write-routes.patch (bsc#1177526) + + Avoid exception if no gateway information is present and warning + is triggered for existing routing. + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ cloud-init-write-routes.patch ++++++ --- /var/tmp/diff_new_pack.dPDDgC/_old 2020-10-20 16:10:18.754007011 +0200 +++ /var/tmp/diff_new_pack.dPDDgC/_new 2020-10-20 16:10:18.758007013 +0200 @@ -10,7 +10,7 @@ from cloudinit import helpers from cloudinit import log as logging -@@ -174,7 +175,137 @@ class Distro(distros.Distro): +@@ -174,7 +175,140 @@ class Distro(distros.Distro): util.write_file(out_fn, str(conf), 0o644) def _write_network_config(self, netconfig): @@ -59,9 +59,12 @@ + ) + continue + if dest == 'default' and has_default_route: ++ dest_info = dest ++ if gateway: ++ dest_info = ' '.join([dest, gateway, '-', '-']) + LOG.warning( + '%s already has default route, skipping "%s"', -+ if_name, ' '.join([dest, gateway, '-', '-']) ++ if_name, dest_info + ) + continue + if dest == 'default' and not has_default_route: