mirror of
https://git.proxmox.com/git/fwupd
synced 2025-07-24 21:05:29 +00:00
7 lines
187 B
Plaintext
7 lines
187 B
Plaintext
polkit.addRule(function(action, subject) {
|
|
if (action.id.startsWith("org.freedesktop.fwupd.") &&
|
|
subject.isInGroup("wheel")) {
|
|
return polkit.Result.YES;
|
|
}
|
|
});
|