Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-iscsi-client for openSUSE:Factory checked in at 2024-11-15 15:37:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-iscsi-client (Old) and /work/SRC/openSUSE:Factory/.yast2-iscsi-client.new.2017 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-iscsi-client" Fri Nov 15 15:37:58 2024 rev:148 rq:1224148 version:5.0.5 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-iscsi-client/yast2-iscsi-client.changes 2024-11-13 15:27:20.782919264 +0100 +++ /work/SRC/openSUSE:Factory/.yast2-iscsi-client.new.2017/yast2-iscsi-client.changes 2024-11-15 15:38:06.533526872 +0100 @@ -1,0 +2,6 @@ +Thu Nov 14 09:13:29 UTC 2024 - Knut Anderssen <[email protected]> + +- Fix typo introduced by previous change (bsc#1231385, bsc#1233351) +- 5.0.5 + +------------------------------------------------------------------- Old: ---- yast2-iscsi-client-5.0.4.tar.bz2 New: ---- yast2-iscsi-client-5.0.5.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-iscsi-client.spec ++++++ --- /var/tmp/diff_new_pack.4jUugp/_old 2024-11-15 15:38:07.189554348 +0100 +++ /var/tmp/diff_new_pack.4jUugp/_new 2024-11-15 15:38:07.193554516 +0100 @@ -17,7 +17,7 @@ Name: yast2-iscsi-client -Version: 5.0.4 +Version: 5.0.5 Release: 0 Summary: YaST2 - iSCSI Client Configuration License: GPL-2.0-only ++++++ yast2-iscsi-client-5.0.4.tar.bz2 -> yast2-iscsi-client-5.0.5.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-iscsi-client-5.0.4/package/yast2-iscsi-client.changes new/yast2-iscsi-client-5.0.5/package/yast2-iscsi-client.changes --- old/yast2-iscsi-client-5.0.4/package/yast2-iscsi-client.changes 2024-11-12 19:23:22.000000000 +0100 +++ new/yast2-iscsi-client-5.0.5/package/yast2-iscsi-client.changes 2024-11-14 10:59:34.000000000 +0100 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Thu Nov 14 09:13:29 UTC 2024 - Knut Anderssen <[email protected]> + +- Fix typo introduced by previous change (bsc#1231385, bsc#1233351) +- 5.0.5 + +------------------------------------------------------------------- Thu Oct 31 11:46:26 UTC 2024 - Knut Anderssen <[email protected]> - Fixes for bsc#1231385 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-iscsi-client-5.0.4/package/yast2-iscsi-client.spec new/yast2-iscsi-client-5.0.5/package/yast2-iscsi-client.spec --- old/yast2-iscsi-client-5.0.4/package/yast2-iscsi-client.spec 2024-11-12 19:23:22.000000000 +0100 +++ new/yast2-iscsi-client-5.0.5/package/yast2-iscsi-client.spec 2024-11-14 10:59:34.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-iscsi-client -Version: 5.0.4 +Version: 5.0.5 Release: 0 Summary: YaST2 - iSCSI Client Configuration License: GPL-2.0-only diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-iscsi-client-5.0.4/src/include/iscsi-client/widgets.rb new/yast2-iscsi-client-5.0.5/src/include/iscsi-client/widgets.rb --- old/yast2-iscsi-client-5.0.4/src/include/iscsi-client/widgets.rb 2024-11-12 19:23:22.000000000 +0100 +++ new/yast2-iscsi-client-5.0.5/src/include/iscsi-client/widgets.rb 2024-11-14 10:59:34.000000000 +0100 @@ -252,7 +252,7 @@ # "yyyy-mm" is the date at which the domain is valid and the identifier # is freely selectable. For further details please check the iSCSI spec. - i_name = Convert.to_string(UI.QueryWidget(:initiator_name, :Value)) + i_name = initiator_name_value # name not changed at all or already saved after checking it return true if IscsiClientLib.initiatorname == i_name @@ -291,21 +291,22 @@ UI.QueryWidget(:iface, :Value).to_s end + def initiator_name_value + UI.QueryWidget(:initiator_name, :Value).to_s + end + def storeInitName(_key, event) event = deep_copy(event) - if Convert.to_string(UI.QueryWidget(:initiator_name, :Value)) != - IscsiClientLib.initiatorname + if initiator_name_value != IscsiClientLib.initiatorname # write initiatorname - IscsiClientLib.writeInitiatorName( - Convert.to_string(UI.QueryWidget(:initiator_name, :Value)) - ) + IscsiClientLib.writeInitiatorName(initiator_name_value) # Isn't this redundant with the code at IscsiClientLib.writeInitiatorName? if Stage.initial IscsiClientLib.restart_iscsid_initial else Service.Restart("iscsid") end - log.info "write initiatorname #{IscsientLib.initiatorname}" + log.info "write initiatorname #{IscsiClientLib.initiatorname}" end IscsiClientLib.iface = iface_value if iface_value != IscsiClientLib.selected_iface nil
