diff options
Diffstat (limited to 'src/leap/baseapp/permcheck.py')
-rw-r--r-- | src/leap/baseapp/permcheck.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/leap/baseapp/permcheck.py b/src/leap/baseapp/permcheck.py new file mode 100644 index 00000000..58748761 --- /dev/null +++ b/src/leap/baseapp/permcheck.py @@ -0,0 +1,10 @@ +import os + +from leap.util.fileutil import which + + +def is_pkexec_in_system(): + pkexec_path = which('pkexec') + if not pkexec_path: + return False + return os.access(pkexec_path, os.X_OK) |