diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-12-12 11:17:16 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-12-12 11:17:16 +0000 |
commit | df23d1acfe8752f339f9f69d212cfa240f578796 (patch) | |
tree | 104a01fc795255b3434f1adb915aa621f116d612 /urpmi.removemedia | |
parent | 15c0d5414fbeb5b6e2fa65e30cbe99e33b00df20 (diff) | |
download | urpmi-df23d1acfe8752f339f9f69d212cfa240f578796.tar urpmi-df23d1acfe8752f339f9f69d212cfa240f578796.tar.gz urpmi-df23d1acfe8752f339f9f69d212cfa240f578796.tar.bz2 urpmi-df23d1acfe8752f339f9f69d212cfa240f578796.tar.xz urpmi-df23d1acfe8752f339f9f69d212cfa240f578796.zip |
create urpm->new_parse_cmdline and use it
(it may be a little stricter for urpmi since we exit(1) on parse_cmdline error)
Diffstat (limited to 'urpmi.removemedia')
-rwxr-xr-x | urpmi.removemedia | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/urpmi.removemedia b/urpmi.removemedia index 88e9a823..35f98081 100755 --- a/urpmi.removemedia +++ b/urpmi.removemedia @@ -53,11 +53,9 @@ where <name> is a medium name to remove. $options{noclean} = 1; $options{strict_match} = 1; -my $urpm = new urpm; - our @cmdline; #- set by urpm::args -urpm::args::parse_cmdline(urpm => $urpm) or exit(1); +my $urpm = urpm->new_parse_cmdline or exit(1); if ($< != 0) { $urpm->{fatal}(1, N("Only superuser is allowed to remove media")); |