summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorColin Guthrie <colin@mageia.org>2013-10-07 11:40:13 +0100
committerColin Guthrie <colin@mageia.org>2013-10-07 11:55:32 +0100
commitec7c0926cc98fa3adb0d70bd82404b52b46d0da4 (patch)
treebeae3ac8856d0878182edc088a3343d9b9969ecc /bin
parent8e3b15321bc251e0aadad652f5b3896333b3b2fa (diff)
downloaddrak3d-ec7c0926cc98fa3adb0d70bd82404b52b46d0da4.tar
drak3d-ec7c0926cc98fa3adb0d70bd82404b52b46d0da4.tar.gz
drak3d-ec7c0926cc98fa3adb0d70bd82404b52b46d0da4.tar.bz2
drak3d-ec7c0926cc98fa3adb0d70bd82404b52b46d0da4.tar.xz
drak3d-ec7c0926cc98fa3adb0d70bd82404b52b46d0da4.zip
Convert to polkit from usermode consolehelper for gaining root privileges
polkit is better integrated into various environments, both console and GUI and offers better access rules and prevents the internal need to run su which is prone to errors and doesn't offer an environment integrated prompt to the user. In this case the current package policy (in rpm spec) has been migrated here and is as follows: drak3d requires authentication as the current user. mga#11125
Diffstat (limited to 'bin')
-rwxr-xr-xbin/drak3d4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/drak3d b/bin/drak3d
index 14abbe0..0f2b3d4 100755
--- a/bin/drak3d
+++ b/bin/drak3d
@@ -32,10 +32,12 @@ use Xconfig::glx;
use any;
use Getopt::Long;
-my $in = eval { interactive->vnew('su') };
+my $in = eval { interactive->vnew };
$in || $::auto or die $@;
my $do_pkgs = $in ? $in->do_pkgs : do_pkgs_standalone->new;
+require_root_capability();
+
sub exit_program { $in ? $in->exit(@_) : exit(@_) }
my $glx = Xconfig::glx::detect_may_install($do_pkgs) or exit_program();