8 lines
251 B
Plaintext
8 lines
251 B
Plaintext
polkit.addRule(function(action, subject) {
|
|
if (action.id == "org.freedesktop.fwupd.update-internal" &&
|
|
subject.active == true && subject.local == true &&
|
|
subject.isInGroup("sudo")) {
|
|
return polkit.Result.YES;
|
|
}
|
|
});
|