Skip to content

Commit

Permalink
Merge 9fe3d9a into 2136cf1
Browse files Browse the repository at this point in the history
  • Loading branch information
wfeldt committed Apr 3, 2019
2 parents 2136cf1 + 9fe3d9a commit 1cd6eb2
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 9 deletions.
7 changes: 7 additions & 0 deletions package/yast2-s390.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Apr 3 12:52:42 UTC 2019 - snwint@suse.com

- adjust zfcp "auto LUN scan" message (bsc#1068281)
- do not show "auto LUN scan" hint during auto install (bsc#1104021)
- 4.1.1

-------------------------------------------------------------------
Tue Feb 26 12:57:12 UTC 2019 - José Iván López González <jlopez@suse.com>

Expand Down
2 changes: 1 addition & 1 deletion package/yast2-s390.spec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


Name: yast2-s390
Version: 4.1.0
Version: 4.1.1
Release: 0

BuildRoot: %{_tmppath}/%{name}-%{version}-build
Expand Down
2 changes: 1 addition & 1 deletion src/include/s390/zfcp/dialogs.rb
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def AddZFCPDiskDialog
ComboBox(Id(:lun), Opt(:hstretch, :editable), _("&LUN"), luns)
),
VSpacing(2),
Label(_("If no WWPN and no LUN have been defined the system is trying to use allow_lun_scan.")),
Label(_("If no WWPN and no LUN have been defined the system is trying to use auto LUN scan.")),
VStretch()
),
HStretch()
Expand Down
2 changes: 1 addition & 1 deletion src/include/s390/zfcp/helps.rb
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def initialize_s390_zfcp_helps(_include_target)
"<p>The LUN must be entered with lowercase letters as a 16-digit hex value with\n" \
"all trailing zeros, such as <tt>0x52ca000000000000</tt>.</p>" \
"<p>If no WWPN <b>and</b> no LUN have been defined the system is " \
"trying to use allow_lun_scan.</p>"
"trying to use auto LUN scan.</p>"
) +
# Disk selection dialog Warning
_("<h1>Warning</h1>") +
Expand Down
12 changes: 6 additions & 6 deletions src/modules/ZFCPController.rb
Original file line number Diff line number Diff line change
Expand Up @@ -557,13 +557,13 @@ def ReportControllerActivationError(channel, ret)
)
)
when 10
Report.Message(
Builtins.sformat(
# message, %1 is device identification
_("%1: This host adapter supports allow_lun_scan."),
channel
)
msg = Builtins.sformat(
# message, %1 is device identification
_("%1: This host adapter supports auto LUN scan."),
channel
)
# do not show this during auto install (bsc#1104021)
Mode.autoinst ? log.info(msg) : Report.Message(msg)
else
Report.Error(
Builtins.sformat(
Expand Down

0 comments on commit 1cd6eb2

Please sign in to comment.