10 lines
306 B
Plaintext
10 lines
306 B
Plaintext
|
polkit.addRule(function(action, subject) {
|
||
|
if ((action.id == "org.corectrl.helper.init" ||
|
||
|
action.id == "org.corectrl.helperkiller.init") &&
|
||
|
subject.local == true &&
|
||
|
subject.active == true &&
|
||
|
subject.isInGroup("marc")) {
|
||
|
return polkit.Result.YES;
|
||
|
}
|
||
|
});
|