diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-07-03 08:59:46 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-07-03 08:59:46 +0000 |
commit | 5234de9b98ef147c8533b2829cb5083c45e46b46 (patch) | |
tree | b48cbfceece95043815ab652d0307528fbdaf783 /urpm/install.pm | |
parent | 1be3440bc78cb655eeb7b4efabb0f8a23734e2ea (diff) | |
download | urpmi-5234de9b98ef147c8533b2829cb5083c45e46b46.tar urpmi-5234de9b98ef147c8533b2829cb5083c45e46b46.tar.gz urpmi-5234de9b98ef147c8533b2829cb5083c45e46b46.tar.bz2 urpmi-5234de9b98ef147c8533b2829cb5083c45e46b46.tar.xz urpmi-5234de9b98ef147c8533b2829cb5083c45e46b46.zip |
factorize options handling
Diffstat (limited to 'urpm/install.pm')
-rw-r--r-- | urpm/install.pm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/urpm/install.pm b/urpm/install.pm index f3eb971d..d56cb8ab 100644 --- a/urpm/install.pm +++ b/urpm/install.pm @@ -135,6 +135,20 @@ sub get_README_files { } } +sub options { + my ($urpm) = @_; + + ( + excludepath => $urpm->{options}{excludepath}, + excludedocs => $urpm->{options}{excludedocs}, + repackage => $urpm->{options}{repackage}, + post_clean_cache => $urpm->{options}{'post-clean'}, + nosize => $urpm->{options}{ignoresize}, + ignorearch => $urpm->{options}{ignorearch}, + noscripts => $urpm->{options}{noscripts}, + ); +} + #- install packages according to each hash (remove, install or upgrade). #- options: #- test, excludepath, nodeps, noorder (unused), delta, |