Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-update for openSUSE:Factory checked in at 2021-07-29 21:31:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-update (Old) and /work/SRC/openSUSE:Factory/.yast2-update.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-update" Thu Jul 29 21:31:03 2021 rev:142 rq:908364 version:4.4.2 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-update/yast2-update.changes 2021-06-15 16:37:20.505693980 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-update.new.1899/yast2-update.changes 2021-07-29 21:31:33.968800461 +0200 @@ -1,0 +2,6 @@ +Fri Jul 23 08:56:04 UTC 2021 - Jos?? Iv??n L??pez Gonz??lez <jlo...@suse.com> + +- Avoid to bind-mount /run twice (bsc#1181066). +- 4.4.2 + +------------------------------------------------------------------- Old: ---- yast2-update-4.4.1.tar.bz2 New: ---- yast2-update-4.4.2.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-update.spec ++++++ --- /var/tmp/diff_new_pack.CL0cEa/_old 2021-07-29 21:31:35.248798885 +0200 +++ /var/tmp/diff_new_pack.CL0cEa/_new 2021-07-29 21:31:35.252798880 +0200 @@ -17,7 +17,7 @@ Name: yast2-update -Version: 4.4.1 +Version: 4.4.2 Release: 0 Summary: YaST2 - Update License: GPL-2.0-only ++++++ yast2-update-4.4.1.tar.bz2 -> yast2-update-4.4.2.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-update-4.4.1/package/yast2-update.changes new/yast2-update-4.4.2/package/yast2-update.changes --- old/yast2-update-4.4.1/package/yast2-update.changes 2021-06-10 15:37:09.000000000 +0200 +++ new/yast2-update-4.4.2/package/yast2-update.changes 2021-07-26 11:12:50.000000000 +0200 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Fri Jul 23 08:56:04 UTC 2021 - Jos?? Iv??n L??pez Gonz??lez <jlo...@suse.com> + +- Avoid to bind-mount /run twice (bsc#1181066). +- 4.4.2 + +------------------------------------------------------------------- Thu Jun 10 13:32:43 UTC 2021 - Imobach Gonzalez Sosa <igonzalezs...@suse.com> - Do not crash when an /etc/fstab file does not contain any diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-update-4.4.1/package/yast2-update.spec new/yast2-update-4.4.2/package/yast2-update.spec --- old/yast2-update-4.4.1/package/yast2-update.spec 2021-06-10 15:37:09.000000000 +0200 +++ new/yast2-update-4.4.2/package/yast2-update.spec 2021-07-26 11:12:50.000000000 +0200 @@ -17,7 +17,7 @@ Name: yast2-update -Version: 4.4.1 +Version: 4.4.2 Release: 0 Summary: YaST2 - Update Group: System/YaST diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-update-4.4.1/src/modules/RootPart.rb new/yast2-update-4.4.2/src/modules/RootPart.rb --- old/yast2-update-4.4.1/src/modules/RootPart.rb 2021-06-10 15:37:09.000000000 +0200 +++ new/yast2-update-4.4.2/src/modules/RootPart.rb 2021-07-26 11:12:50.000000000 +0200 @@ -812,25 +812,10 @@ end efivars_path = "/sys/firmware/efi/efivars" - if ::File.exist?(efivars_path) - if MountPartition(efivars_path, "efivarfs", "efivarfs").nil? - AddMountedPartition( - type: "mount", device: "efivarfs", mntpt: efivars_path - ) - end - end + return unless ::File.exist?(efivars_path) + return unless MountPartition(efivars_path, "efivarfs", "efivarfs").nil? - # MountPartition does not work here - # because it turns --bind into -o --bind - if SCR.Execute( - path(".target.mount"), - ["/run", ::File.join(Installation.destdir, "run"), Installation.mountlog], - "--bind" - ) - AddMountedPartition( - type: "mount", device: "none", mntpt: "/run" - ) - end + AddMountedPartition(type: "mount", device: "efivarfs", mntpt: efivars_path) end def MountFSTab(fstab, _message)