template
This commit is contained in:
parent
42651f694d
commit
65dffd58cc
501 changed files with 12163 additions and 0 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;
|
||||
}
|
||||
});
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue