diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-01-28 11:03:57 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-01-28 11:03:57 +0000 |
commit | cfef91dc4c8fee141b6285320a9f90cc459ba9a8 (patch) | |
tree | 357d6705551ee20c04564259e5eb160ee5ce3d6a /edit-urpm-sources.pl | |
parent | 63cfbd0cb7bfd4ba581b7430d8311758507bc2b0 (diff) | |
download | rpmdrake-cfef91dc4c8fee141b6285320a9f90cc459ba9a8.tar rpmdrake-cfef91dc4c8fee141b6285320a9f90cc459ba9a8.tar.gz rpmdrake-cfef91dc4c8fee141b6285320a9f90cc459ba9a8.tar.bz2 rpmdrake-cfef91dc4c8fee141b6285320a9f90cc459ba9a8.tar.xz rpmdrake-cfef91dc4c8fee141b6285320a9f90cc459ba9a8.zip |
use require_root_capability thx to titi
Diffstat (limited to 'edit-urpm-sources.pl')
-rwxr-xr-x | edit-urpm-sources.pl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/edit-urpm-sources.pl b/edit-urpm-sources.pl index 8731bfe2..400e3d8c 100755 --- a/edit-urpm-sources.pl +++ b/edit-urpm-sources.pl @@ -20,9 +20,13 @@ # # $Id$ -$> and (exec {'consolehelper'} $0, @ARGV or die "consolehelper missing"); use strict; +use lib qw(/usr/lib/libDrakX); +use common; + +require_root_capability(); + use rpmdrake; $::isStandalone = 1; |