diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-11-29 18:24:54 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-11-29 18:24:54 +0000 |
commit | 0fc0fcebc9086b7f3c0e67c3fc0fc70e2eae1363 (patch) | |
tree | 09d43a3e90beb080119c0636a976e4f605153c17 | |
parent | 90042204c87ba41cf50c396eb0830608c5e11577 (diff) | |
download | urpmi-0fc0fcebc9086b7f3c0e67c3fc0fc70e2eae1363.tar urpmi-0fc0fcebc9086b7f3c0e67c3fc0fc70e2eae1363.tar.gz urpmi-0fc0fcebc9086b7f3c0e67c3fc0fc70e2eae1363.tar.bz2 urpmi-0fc0fcebc9086b7f3c0e67c3fc0fc70e2eae1363.tar.xz urpmi-0fc0fcebc9086b7f3c0e67c3fc0fc70e2eae1363.zip |
Factorize code that sets default values for some options
-rw-r--r-- | urpm.pm | 5 | ||||
-rwxr-xr-x | urpmi | 3 |
2 files changed, 5 insertions, 3 deletions
@@ -181,6 +181,11 @@ sub read_config { $urpm->probe_medium($medium, %options) and push @{$urpm->{media}}, $medium; } + #- load default values + foreach (qw(post-clean verify-rpm)) { + exists $urpm->{options}{$_} or $urpm->{options}{$_} = 1; + } + $urpm->{media} = [ sort { $a->{priority} <=> $b->{priority} } @{$urpm->{media}} ]; #- keep in mind when an hdlist/list file is already used @@ -332,9 +332,6 @@ $urpm->configure(nocheck_access => $env || $< != 0, usedistrib => $usedistrib, ); #- get back activated default values of boolean options. -foreach (qw(post-clean verify-rpm)) { - exists $urpm->{options}{$_} or $urpm->{options}{$_} = 1; -} exists $urpm->{options}{'split-level'} or $urpm->{options}{'split-level'} = $split_level; exists $urpm->{options}{'split-length'} or $urpm->{options}{'split-length'} = $split_length; # comma-separated list of packages that should be installed first, |