Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package yast2-bootloader for
openSUSE:Factory checked in at 2021-08-23 10:20:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-bootloader (Old)
and /work/SRC/openSUSE:Factory/.yast2-bootloader.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-bootloader"
Mon Aug 23 10:20:23 2021 rev:311 rq:912559 version:4.4.6
Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-bootloader/yast2-bootloader.changes
2021-07-09 23:57:06.561564977 +0200
+++
/work/SRC/openSUSE:Factory/.yast2-bootloader.new.1899/yast2-bootloader.changes
2021-08-23 10:20:26.979428768 +0200
@@ -1,0 +2,6 @@
+Mon Aug 16 14:16:16 UTC 2021 - Josef Reidinger <[email protected]>
+
+- Replace mkinitrd with dracut (bsc#1189374, jsc#SLE-20347)
+- 4.4.6
+
+-------------------------------------------------------------------
Old:
----
yast2-bootloader-4.4.5.tar.bz2
New:
----
yast2-bootloader-4.4.6.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-bootloader.spec ++++++
--- /var/tmp/diff_new_pack.lmPS8b/_old 2021-08-23 10:20:27.523428197 +0200
+++ /var/tmp/diff_new_pack.lmPS8b/_new 2021-08-23 10:20:27.527428193 +0200
@@ -17,7 +17,7 @@
Name: yast2-bootloader
-Version: 4.4.5
+Version: 4.4.6
Release: 0
Summary: YaST2 - Bootloader Configuration
License: GPL-2.0-or-later
++++++ yast2-bootloader-4.4.5.tar.bz2 -> yast2-bootloader-4.4.6.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-bootloader-4.4.5/package/yast2-bootloader.changes
new/yast2-bootloader-4.4.6/package/yast2-bootloader.changes
--- old/yast2-bootloader-4.4.5/package/yast2-bootloader.changes 2021-07-07
11:58:27.000000000 +0200
+++ new/yast2-bootloader-4.4.6/package/yast2-bootloader.changes 2021-08-17
09:53:46.000000000 +0200
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Mon Aug 16 14:16:16 UTC 2021 - Josef Reidinger <[email protected]>
+
+- Replace mkinitrd with dracut (bsc#1189374, jsc#SLE-20347)
+- 4.4.6
+
+-------------------------------------------------------------------
Wed Jul 7 09:22:03 UTC 2021 - Stefan Hundhammer <[email protected]>
- Add the os-prober package to the set of packages to install
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-bootloader-4.4.5/package/yast2-bootloader.spec
new/yast2-bootloader-4.4.6/package/yast2-bootloader.spec
--- old/yast2-bootloader-4.4.5/package/yast2-bootloader.spec 2021-07-07
11:58:27.000000000 +0200
+++ new/yast2-bootloader-4.4.6/package/yast2-bootloader.spec 2021-08-17
09:53:46.000000000 +0200
@@ -17,7 +17,7 @@
Name: yast2-bootloader
-Version: 4.4.5
+Version: 4.4.6
Release: 0
Summary: YaST2 - Bootloader Configuration
License: GPL-2.0-or-later
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-bootloader-4.4.5/src/lib/bootloader/finish_client.rb
new/yast2-bootloader-4.4.6/src/lib/bootloader/finish_client.rb
--- old/yast2-bootloader-4.4.5/src/lib/bootloader/finish_client.rb
2021-07-07 11:58:27.000000000 +0200
+++ new/yast2-bootloader-4.4.6/src/lib/bootloader/finish_client.rb
2021-08-17 09:53:46.000000000 +0200
@@ -72,11 +72,11 @@
log.info "Installation started with kexec_reboot set 0"
end
- # call mkinitrd to ensure initrd is properly set, it is especially needed
+ # call dracut to ensure initrd is properly set, it is especially needed
# in live system install ( where it is just copyied ) and image based
# installation where post install script is not executed
- # (bnc#979719,bnc#977656)
- Yast::Execute.on_target("/sbin/mkinitrd")
+ # (bnc#979719,bnc#977656, bsc#1189374)
+ Yast::Execute.on_target("/usr/bin/dracut", "--force")
true
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-bootloader-4.4.5/test/bootloader_finish_client_test.rb
new/yast2-bootloader-4.4.6/test/bootloader_finish_client_test.rb
--- old/yast2-bootloader-4.4.5/test/bootloader_finish_client_test.rb
2021-07-07 11:58:27.000000000 +0200
+++ new/yast2-bootloader-4.4.6/test/bootloader_finish_client_test.rb
2021-08-17 09:53:46.000000000 +0200
@@ -66,8 +66,8 @@
expect(Yast::Misc.boot_msg).to match(/will now shut down/)
end
- it "runs mkinitrd" do
- expect(Yast::Execute).to receive(:on_target).with("/sbin/mkinitrd")
+ it "runs dracut" do
+ expect(Yast::Execute).to receive(:on_target).with("/usr/bin/dracut",
"--force")
subject.write
end