summaryrefslogtreecommitdiffstats
path: root/perl-install/any.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r--perl-install/any.pm5
1 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm
index f6220f4bb..c9cace407 100644
--- a/perl-install/any.pm
+++ b/perl-install/any.pm
@@ -502,7 +502,10 @@ sub setup_thiskind {
my $opt = [ __("Yes"), __("No") ];
push @$opt, __("See hardware info") if $::expert;
my $r = "Yes";
- $r = $in->ask_from_list_('', $msg, $opt, "No") unless $at_least_one && @l == 0;
+ unless ($at_least_one && @l == 0) {
+ $::o->set_help('setupSCSIChoose') if $::isInstall;
+ $r = $in->ask_from_list_('', $msg, $opt, "No");
+ }
if ($r eq "No") { return @l }
if ($r eq "Yes") {
push @l, load_module($in, $type) || next;