10 lines
306 B
Plaintext
Executable File
10 lines
306 B
Plaintext
Executable File
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;
|
|
}
|
|
});
|