aboutsummaryrefslogtreecommitdiffstats
path: root/AdminPanel
diff options
context:
space:
mode:
Diffstat (limited to 'AdminPanel')
-rw-r--r--AdminPanel/Privileges.pm8
1 files changed, 6 insertions, 2 deletions
diff --git a/AdminPanel/Privileges.pm b/AdminPanel/Privileges.pm
index b1d4ef74..f6db9d41 100644
--- a/AdminPanel/Privileges.pm
+++ b/AdminPanel/Privileges.pm
@@ -28,13 +28,17 @@ use English qw(-no_match_vars);
our @EXPORT = qw(require_root_capability
ask_for_authentication
$USE_SUDO
- $USE_PKIT);
+ $USE_PKIT
+ $USE_CHLP);
our $USE_SUDO = 1;
our $USE_PKIT = 2;
+our $USE_CHLP = 3;
my $wrappers = { $USE_SUDO => "sudo",
- $USE_PKIT => "pkexec" };
+ $USE_PKIT => "pkexec",
+ $USE_CHLP => "consolehelper"
+ };
my $wrapper = 0;