diff --git a/tui/installer/screens.py b/tui/installer/screens.py index 28247cc5..d3bfe34e 100644 --- a/tui/installer/screens.py +++ b/tui/installer/screens.py @@ -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' )