9d3ca49387
Signed-off-by: Dean Troyer <dtroyer@gmail.com>
9 lines
221 B
Plaintext
9 lines
221 B
Plaintext
// openstack-nova libvirt management permissions
|
|
|
|
polkit.addRule(function(action, subject) {
|
|
if (action.id == "org.libvirt.unix.manage" &&
|
|
subject.user == "nova") {
|
|
return polkit.Result.YES;
|
|
}
|
|
});
|