upstream/openstack/python-nova/centos/files/nova-polkit.rules
Dean Troyer 9d3ca49387 StarlingX open source release updates
Signed-off-by: Dean Troyer <dtroyer@gmail.com>
2018-05-31 07:37:19 -07:00

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;
}
});