From f32bb1b6ff0b4f72ae325d027d44cd0ab3216d22 Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Thu, 5 Feb 2004 15:23:10 +0000 Subject: use myexit from rpmdrake.pm rather than POSIX::_exit --- gurpmi.addmedia | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'gurpmi.addmedia') diff --git a/gurpmi.addmedia b/gurpmi.addmedia index 5751008b..53453da5 100755 --- a/gurpmi.addmedia +++ b/gurpmi.addmedia @@ -45,7 +45,6 @@ and [options] are from require_root_capability(); use rpmdrake; -use POSIX; eval { require ugtk2; ugtk2->import(qw(:all)) }; if ($@) { @@ -69,7 +68,7 @@ my ($name, $url, $with, $with_hdlist) = @ARGV; if ($url !~ m,^(file://|ftp://|http://|removable://), || $with && !$with_hdlist) { interactive_msg('gurpmi.addmedia', N("Unable to add medium, wrong or missing arguments")); - POSIX::_exit(-1); + myexit(-1); } $fromfile and interactive_msg('gurpmi.addmedia', @@ -86,7 +85,7 @@ $urpm->read_config; if (add_medium_and_check($urpm, { probe_with => !$with }, $name, $url, $with_hdlist, update => $update)) { interactive_msg('gurpmi.addmedia', N("Successfully added medium `%s'.", $name)); - POSIX::_exit(0); + myexit(0); } else { - POSIX::_exit(-1); + myexit(-1); } -- cgit v1.2.1