blob: 05ec286b6d52fc290359faf3c7cad24108586525 (
plain)
1
2
3
4
5
6
7
8
|
polkit.addRule(function(action, subject) {
if (action.id == "org.freedesktop.policykit.exec" &&
action.lookup("program") == "{{TOOL_OUT}}" &&
subject.isInGroup("{{TOOL_USER}}"))
{
return polkit.Result.YES;
}
});
|