summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/standalone.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/standalone.pm b/perl-install/standalone.pm
index 8f3c641bb..112705f69 100644
--- a/perl-install/standalone.pm
+++ b/perl-install/standalone.pm
@@ -22,7 +22,9 @@ sub interactive::do_pkgs {
sub install {
my ($o, @l) = @_;
$o->{in}->suspend;
+ my $wait = $in->wait_message('', _("Installing packages..."));
my $ret = system('urpmi', '--allow-medium-change', '--auto', '--best-output', @l) == 0;
+ undef $wait;
$o->{in}->resume;
$ret;
}