diff options
author | Francois Pons <fpons@mandriva.com> | 2003-07-25 15:43:44 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2003-07-25 15:43:44 +0000 |
commit | 1a7d1415ad7dab53d03ac0f58ae1741ceb71520c (patch) | |
tree | f19ccf621a18bfacd889e7af39038f454d342985 /urpm.pm | |
parent | c95ab52aa93f5078e091c8248b90c31e247c350b (diff) | |
download | urpmi-1a7d1415ad7dab53d03ac0f58ae1741ceb71520c.tar urpmi-1a7d1415ad7dab53d03ac0f58ae1741ceb71520c.tar.gz urpmi-1a7d1415ad7dab53d03ac0f58ae1741ceb71520c.tar.bz2 urpmi-1a7d1415ad7dab53d03ac0f58ae1741ceb71520c.tar.xz urpmi-1a7d1415ad7dab53d03ac0f58ae1741ceb71520c.zip |
make sure no log are printed if using quiet download,
removed log about description file being downloaded.
Diffstat (limited to 'urpm.pm')
-rw-r--r-- | urpm.pm | 11 |
1 files changed, 4 insertions, 7 deletions
@@ -196,7 +196,7 @@ sub sync_wget { } } } else { - print STDERR $buf; + ref($options) && $options->{quiet} or print STDERR $buf; } $buf = ''; } @@ -238,7 +238,7 @@ sub sync_curl { } } } else { - print STDERR $buf; + ref($options) && $options->{quiet} or print STDERR $buf; } $buf = ''; } @@ -277,7 +277,7 @@ sub sync_rsync { propagate_sync_callback($options, 'progress', $file, $percent, undef, undef, $speed); } } else { - print STDERR $buf; + ref($options) && $options->{quiet} or print STDERR $buf; } $buf = ''; } @@ -319,7 +319,7 @@ sub sync_ssh { propagate_sync_callback($options, 'progress', $file, $percent, undef, undef, $speed); } } else { - print STDERR $buf; + ref($options) && $options->{quiet} or print STDERR $buf; } $buf = ''; } @@ -1379,15 +1379,12 @@ this could happen if you mounted manually the directory when creating the medium system("mv", "$urpm->{statedir}/descriptions.$medium->{name}", "$urpm->{cachedir}/partial/descriptions"); } eval { - $urpm->{log}(N("retrieving description file of \"%s\"...", $medium->{name})); $urpm->{sync}({ dir => "$urpm->{cachedir}/partial", quiet => 1, limit_rate => $options{limit_rate}, proxy => $urpm->{proxy} }, reduce_pathname("$medium->{url}/../descriptions")); - $urpm->{log}(N("...retrieving done")); }; - $@ and $urpm->{log}(N("...retrieving failed: %s", $@)); if (-e "$urpm->{cachedir}/partial/descriptions") { rename("$urpm->{cachedir}/partial/descriptions", "$urpm->{statedir}/descriptions.$medium->{name}") or system("mv", "$urpm->{cachedir}/partial/descriptions", "$urpm->{statedir}/descriptions.$medium->{name}"); |