diff options
author | Ivan Alejandro <ivanalejandro0@gmail.com> | 2014-11-10 16:20:06 -0300 |
---|---|---|
committer | Ivan Alejandro <ivanalejandro0@gmail.com> | 2014-11-11 15:19:51 -0300 |
commit | 2c8cd4c4f225536bb506b9df7240767b2b7765f4 (patch) | |
tree | 6ac9c165b94f7d8ca3eec5c701c6f623cd668366 | |
parent | 21ce355c137e1d5dbe552c1432aaa5d40d14d759 (diff) |
Add support for the internal LXDE polkit agent.
Closes #6043.
-rw-r--r-- | changes/bug-6043_support-internal-lxde-polkit-agent | 1 | ||||
-rw-r--r-- | src/leap/bitmask/util/privilege_policies.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/changes/bug-6043_support-internal-lxde-polkit-agent b/changes/bug-6043_support-internal-lxde-polkit-agent new file mode 100644 index 00000000..5b9db381 --- /dev/null +++ b/changes/bug-6043_support-internal-lxde-polkit-agent @@ -0,0 +1 @@ +- Add support for the internal LXDE polkit agent. Closes #6043. diff --git a/src/leap/bitmask/util/privilege_policies.py b/src/leap/bitmask/util/privilege_policies.py index 2016e67b..68a1af28 100644 --- a/src/leap/bitmask/util/privilege_policies.py +++ b/src/leap/bitmask/util/privilege_policies.py @@ -179,6 +179,7 @@ class LinuxPolicyChecker(PolicyChecker): 'ps aux | grep "polkit-[k]de-authentication-agent-1"', 'ps aux | grep "polkit-[m]ate-authentication-agent-1"', 'ps aux | grep "[l]xpolkit"', + 'ps aux | grep "[l]xsession"', 'ps aux | grep "[g]nome-shell"', 'ps aux | grep "[f]ingerprint-polkit-agent"', ] |