diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2006-02-13 14:50:54 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2006-02-13 14:50:54 +0000 |
commit | f6a32562aa0ff9b05013133bee40b852a22757ea (patch) | |
tree | 08b3180897ff13a13ae71ea758b02a8907c38041 | |
parent | fd76226b2aaf12e520213f5bb8474514cd8826e7 (diff) | |
download | urpmi-f6a32562aa0ff9b05013133bee40b852a22757ea.tar urpmi-f6a32562aa0ff9b05013133bee40b852a22757ea.tar.gz urpmi-f6a32562aa0ff9b05013133bee40b852a22757ea.tar.bz2 urpmi-f6a32562aa0ff9b05013133bee40b852a22757ea.tar.xz urpmi-f6a32562aa0ff9b05013133bee40b852a22757ea.zip |
Code cleanup
-rwxr-xr-x | urpmi.removemedia | 56 |
1 files changed, 29 insertions, 27 deletions
diff --git a/urpmi.removemedia b/urpmi.removemedia index 1630b162..b29e53ef 100755 --- a/urpmi.removemedia +++ b/urpmi.removemedia @@ -3,7 +3,7 @@ # $Id$ #- Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 MandrakeSoft SA -#- Copyright (C) 2005 Mandriva SA +#- Copyright (C) 2005, 2006 Mandriva SA #- #- This program is free software; you can redistribute it and/or modify #- it under the terms of the GNU General Public License as published by @@ -29,14 +29,18 @@ use urpm::download; $ENV{PATH} = "/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin"; delete @ENV{qw(ENV BASH_ENV IFS CDPATH)}; -sub main { - my (@toremoves, %options); +my @toremove; - $options{noclean} = 1; - $options{strict_match} = 1; - $options{verbose} = 1; +#- default option values +my %options = ( + noclean => 1, + strict_match => 1, + verbose => 1, +); + +{ my $options_end = 0; - foreach (@_) { + foreach (@ARGV) { $_ eq '--' and $options_end = 1, next; unless ($options_end) { /^--?a$/ and $options{all} = 1, next; @@ -57,30 +61,28 @@ where <name> is a medium name to remove. exit 0; }; } - push @toremoves, $_; - } - - my $urpm = new urpm; - if ($< != 0) { - $urpm->{fatal}(1, N("Only superuser is allowed to remove media")); + push @toremove, $_; } +} - $options{verbose} > 0 or $urpm->{log} = sub {}; - - $urpm->read_config; - urpm::download::set_cmdline_proxy(); - my @entries = map { $_->{name} } @{$urpm->{media}}; +my $urpm = new urpm; +if ($< != 0) { + $urpm->{fatal}(1, N("Only superuser is allowed to remove media")); +} - if ($options{all}) { - @toremoves = @entries; - @toremoves == 0 and die N("nothing to remove (use urpmi.addmedia to add a media)\n"); - } - @toremoves == 0 and die N("the entry to remove is missing\n(one of %s)\n", join(", ", @entries)); +$options{verbose} > 0 or $urpm->{log} = sub {}; - $urpm->select_media({ strict_match => $options{strict_match} }, @toremoves); - $urpm->remove_selected_media; +$urpm->read_config; +urpm::download::set_cmdline_proxy(); +my @entries = map { $_->{name} } @{$urpm->{media}}; - $urpm->update_media(noclean => $options{noclean}); +if ($options{all}) { + @toremove = @entries; + @toremove == 0 and die N("nothing to remove (use urpmi.addmedia to add a media)\n"); } +@toremove == 0 and die N("the entry to remove is missing\n(one of %s)\n", join(", ", @entries)); + +$urpm->select_media({ strict_match => $options{strict_match} }, @toremove); +$urpm->remove_selected_media; -main(@ARGV); +$urpm->update_media(noclean => $options{noclean}); |