Erik Dubois
4 years ago
5 changed files with 1057 additions and 4 deletions
@ -0,0 +1,9 @@ |
|||||||
|
/* Allow members of the wheel group to execute any actions |
||||||
|
* without password authentication, similar to "sudo NOPASSWD:" |
||||||
|
*/ |
||||||
|
polkit.addRule(function(action, subject) { |
||||||
|
if (subject.isInGroup("wheel")) { |
||||||
|
return polkit.Result.YES; |
||||||
|
} |
||||||
|
}); |
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue