9 lines
240 B
Plaintext
9 lines
240 B
Plaintext
|
polkit.addRule(function(action, subject) {
|
||
|
if (action.id == "org.libvirt.unix.manage"
|
||
|
&& subject.local
|
||
|
&& subject.active
|
||
|
&& subject.isInGroup("libvirt")) {
|
||
|
return polkit.Result.YES;
|
||
|
}
|
||
|
});
|