diff options
author | Thierry Vignaud <tv@mandriva.org> | 2009-03-31 15:21:01 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2009-03-31 15:21:01 +0000 |
commit | 757705cc72962f5aa2928ded1c536fcefe436fbc (patch) | |
tree | 02a158731d560036711406a4631846fd3c82e2f4 | |
parent | e04e853f78dba410bee91ef667cae20bb0af708b (diff) | |
download | urpmi-757705cc72962f5aa2928ded1c536fcefe436fbc.tar urpmi-757705cc72962f5aa2928ded1c536fcefe436fbc.tar.gz urpmi-757705cc72962f5aa2928ded1c536fcefe436fbc.tar.bz2 urpmi-757705cc72962f5aa2928ded1c536fcefe436fbc.tar.xz urpmi-757705cc72962f5aa2928ded1c536fcefe436fbc.zip |
(run) enable installer to cancel installation
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | urpm/main_loop.pm | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -1,4 +1,5 @@ - downgrade cryptic log message to debug message, fixes #49226 +- enable installer to cancel installation Version 6.24 - 27 March 2009 diff --git a/urpm/main_loop.pm b/urpm/main_loop.pm index 74e860dd..db4066ab 100644 --- a/urpm/main_loop.pm +++ b/urpm/main_loop.pm @@ -273,6 +273,9 @@ foreach my $set (@{$state->{transaction} || []}) { } } } + if ($callbacks->{is_canceled}) { + last if $callbacks->{is_canceled}->(); + } } if ($migrate_back_rpmdb_db_version) { |