Skip to content

Commit

Permalink
Clarify Supplemental Packs dialog in presence of Driver Disks
Browse files Browse the repository at this point in the history
It may not be obvious to users that local-media Driver Disks must be
inserted twice during installation.  This change uses the memorization
of usage of Driver Disks from previous commit, and uses it to explain
users they likely wants to insert their Driver Disk again.

Signed-off-by: Yann Dirson <[email protected]>
  • Loading branch information
ydirson committed Oct 18, 2023
1 parent d417e8d commit 48011bf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tui/installer/screens.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,10 +485,14 @@ def confirm_erase_volume_groups(answers):
return RIGHT_FORWARDS

def use_extra_media(answers):
message = "You installed Would you like to install any Supplemental Packs?"
if "driver-repos" in answers:
message += (" You loaded one or more Driver Disks during this installation, "
"you likely want to install them now using this feature.")
rc = snackutil.ButtonChoiceWindowEx(
tui.screen,
"Supplemental Packs",
"Would you like to install any Supplemental Packs?",
message,
['Yes', 'No'],
default=1, help='suppack'
)
Expand Down

0 comments on commit 48011bf

Please sign in to comment.