summaryrefslogtreecommitdiffstats
path: root/urpm.pm
diff options
context:
space:
mode:
Diffstat (limited to 'urpm.pm')
-rw-r--r--urpm.pm7
1 files changed, 1 insertions, 6 deletions
diff --git a/urpm.pm b/urpm.pm
index 01f389a5..a1ab7295 100644
--- a/urpm.pm
+++ b/urpm.pm
@@ -450,15 +450,10 @@ sub configure {
if ($options{parallel}) {
my ($parallel_options, $parallel_handler);
#- read parallel configuration
- local $_;
- my $parallel = $urpm->open_safe("<", "/etc/urpmi/parallel.cfg");
- if ($parallel) {
- while (<$parallel>) {
+ foreach (cat_("/etc/urpmi/parallel.cfg")) {
chomp; s/#.*$//; s/^\s*//; s/\s*$//;
/\s*([^:]*):(.*)/ or $urpm->{error}(N("unable to parse \"%s\" in file [%s]", $_, "/etc/urpmi/parallel.cfg")), next;
$1 eq $options{parallel} and $parallel_options = ($parallel_options && "\n") . $2;
- }
- close $parallel;
}
#- if a configuration option has been found, use it; else fatal error.
if ($parallel_options) {