diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-07-08 09:20:55 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-07-08 09:20:55 +0000 |
commit | dbc1dddbef3a640401e128761ae1154ebf7b6365 (patch) | |
tree | 67e39e20ac1f63eb96f2988df2c3ddd0c36b89a2 | |
parent | fc53c4b6e0ff41608fb7cba69a4f44ed0d09d46e (diff) | |
download | urpmi-dbc1dddbef3a640401e128761ae1154ebf7b6365.tar urpmi-dbc1dddbef3a640401e128761ae1154ebf7b6365.tar.gz urpmi-dbc1dddbef3a640401e128761ae1154ebf7b6365.tar.bz2 urpmi-dbc1dddbef3a640401e128761ae1154ebf7b6365.tar.xz urpmi-dbc1dddbef3a640401e128761ae1154ebf7b6365.zip |
- urpme:
o --test: display "Removal is possible" if no pb (#40584)
(though i wonder what kind of issues could arise when testing transaction?)
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | urpme | 4 |
2 files changed, 5 insertions, 1 deletions
@@ -4,6 +4,8 @@ o --suggests now displays the suggested packages, see --allow-suggests for previous behaviour (#39726) o add --obsoletes +- urpme: + o --test: display "Removal is possible" if no pb (#40584) Version 6.0 - 8 July 2008, by Pascal "Pixel" Rigaux @@ -176,7 +176,9 @@ my @errors = $parallel if (@errors) { #- Warning : the following message is parsed in urpm::parallel_* $urpm->{fatal}(2, N("Removal failed") . ":\n" . join("\n", map { "\t$_" } @errors)); -} elsif ($may_be_orphans && !$options{auto_orphans} && !$test) { +} elsif ($test) { + print N("Removal is possible"), "\n"; +} elsif ($may_be_orphans && !$options{auto_orphans}) { if (my $msg = urpm::orphans::get_now_orphans_msg($urpm)) { print "\n", $msg; } |