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 31, 2023
1 parent 9db0dde commit 8e88bdb
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 = "Would you like to install any Supplemental Packs?"
if "driver-repos" in answers:
message += (" You previously loaded one or more Driver Disks, if you wish to"
" include these drivers on the installed system, you must install them now.")
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 8e88bdb

Please sign in to comment.