summaryrefslogtreecommitdiffstats
path: root/perl-install/install
diff options
context:
space:
mode:
authorColin Guthrie <colin@mageia.org>2012-10-22 21:37:02 +0000
committerColin Guthrie <colin@mageia.org>2012-10-22 21:37:02 +0000
commitc61591df6c068e4fd9fce7f662eab70896993076 (patch)
tree72454c839ffb37ca07ab02f0e01f7e73b27ab65c /perl-install/install
parent216a03fc068389d5708ddaa966de57089dbafb93 (diff)
downloaddrakx-c61591df6c068e4fd9fce7f662eab70896993076.tar
drakx-c61591df6c068e4fd9fce7f662eab70896993076.tar.gz
drakx-c61591df6c068e4fd9fce7f662eab70896993076.tar.bz2
drakx-c61591df6c068e4fd9fce7f662eab70896993076.tar.xz
drakx-c61591df6c068e4fd9fce7f662eab70896993076.zip
Show a 'please wait' dialog while processing usrmove.
Thanks Blino for the tip
Diffstat (limited to 'perl-install/install')
-rw-r--r--perl-install/install/NEWS1
-rw-r--r--perl-install/install/steps_interactive.pm6
2 files changed, 7 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 5d3d8d106..933719071 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,5 +1,6 @@
- prefer real binaries over the lightweight perl wrappers
- convert filesystem for usrmove during upgrades
+- show a 'please wait' dialog while processing usrmove
Version 14.48 - 22 October 2012
diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm
index 61abd4f10..65962ad33 100644
--- a/perl-install/install/steps_interactive.pm
+++ b/perl-install/install/steps_interactive.pm
@@ -653,6 +653,12 @@ sub reallyChooseGroups {
1;
}
+sub beforeInstallPackages {
+ my ($o) = @_;
+ my $_w = $o->{isUpgrade} && $o->wait_message('', N("Preparing upgrade..."));
+ $o->SUPER::beforeInstallPackages;
+}
+
#------------------------------------------------------------------------------
sub installPackages {
my ($o) = @_;