Hello community, here is the log from the commit of package yast2-iscsi-client for openSUSE:Factory checked in at 2020-03-14 09:54:35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-iscsi-client (Old) and /work/SRC/openSUSE:Factory/.yast2-iscsi-client.new.3160 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-iscsi-client" Sat Mar 14 09:54:35 2020 rev:129 rq:783383 version:4.2.5 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-iscsi-client/yast2-iscsi-client.changes 2020-01-20 22:49:22.283203334 +0100 +++ /work/SRC/openSUSE:Factory/.yast2-iscsi-client.new.3160/yast2-iscsi-client.changes 2020-03-14 09:54:37.527078649 +0100 @@ -1,0 +2,7 @@ +Tue Mar 10 09:29:52 UTC 2020 - Knut Anderssen <[email protected]> + +- Handle the iscsi service status (restart, start...) change after + the iscsid and the iscsiuio sockets (bsc#1160606) +- 4.2.5 + +------------------------------------------------------------------- Old: ---- yast2-iscsi-client-4.2.4.tar.bz2 New: ---- yast2-iscsi-client-4.2.5.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-iscsi-client.spec ++++++ --- /var/tmp/diff_new_pack.zgOSOZ/_old 2020-03-14 09:54:38.159079113 +0100 +++ /var/tmp/diff_new_pack.zgOSOZ/_new 2020-03-14 09:54:38.163079115 +0100 @@ -17,7 +17,7 @@ Name: yast2-iscsi-client -Version: 4.2.4 +Version: 4.2.5 Release: 0 Summary: YaST2 - iSCSI Client Configuration License: GPL-2.0-only ++++++ yast2-iscsi-client-4.2.4.tar.bz2 -> yast2-iscsi-client-4.2.5.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-iscsi-client-4.2.4/package/yast2-iscsi-client.changes new/yast2-iscsi-client-4.2.5/package/yast2-iscsi-client.changes --- old/yast2-iscsi-client-4.2.4/package/yast2-iscsi-client.changes 2020-01-17 13:30:07.000000000 +0100 +++ new/yast2-iscsi-client-4.2.5/package/yast2-iscsi-client.changes 2020-03-10 12:02:22.000000000 +0100 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Tue Mar 10 09:29:52 UTC 2020 - Knut Anderssen <[email protected]> + +- Handle the iscsi service status (restart, start...) change after + the iscsid and the iscsiuio sockets (bsc#1160606) +- 4.2.5 + +------------------------------------------------------------------- Fri Jan 17 10:17:29 UTC 2020 - Josef Reidinger <[email protected]> - fix calling iscsiadm on interface (bsc#1158443) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-iscsi-client-4.2.4/package/yast2-iscsi-client.spec new/yast2-iscsi-client-4.2.5/package/yast2-iscsi-client.spec --- old/yast2-iscsi-client-4.2.4/package/yast2-iscsi-client.spec 2020-01-17 13:30:07.000000000 +0100 +++ new/yast2-iscsi-client-4.2.5/package/yast2-iscsi-client.spec 2020-03-10 12:02:22.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-iscsi-client -Version: 4.2.4 +Version: 4.2.5 Release: 0 Summary: YaST2 - iSCSI Client Configuration Group: System/YaST diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-iscsi-client-4.2.4/src/modules/IscsiClient.rb new/yast2-iscsi-client-4.2.5/src/modules/IscsiClient.rb --- old/yast2-iscsi-client-4.2.4/src/modules/IscsiClient.rb 2020-01-17 13:30:07.000000000 +0100 +++ new/yast2-iscsi-client-4.2.5/src/modules/IscsiClient.rb 2020-03-10 12:02:22.000000000 +0100 @@ -76,10 +76,16 @@ # # @return [Yast2::CompundService] def services + # TODO: Having a combination of services and sockets in a compoud service + # do not smell very well and the user might be very carefull on the + # 'after reboot' selection having to choose correctly for enabling the + # desired option (bsc#1160606). @services ||= Yast2::CompoundService.new( - Yast2::SystemService.find("iscsi"), Yast2::SystemService.find("iscsid"), - Yast2::SystemService.find("iscsiuio") + Yast2::SystemService.find("iscsiuio"), + # It seems that moving it to the end help when iscsid socket is active + # and need to be restarted. (bsc#853300, bsc#1160606) + Yast2::SystemService.find("iscsi") ) end
