Merge "Make qemu use nova user"

This commit is contained in:
Jenkins 2017-03-08 15:30:36 +00:00 committed by Gerrit Code Review
commit 90569a6c8d

View File

@ -1 +1,12 @@
stdio_handler = "file"
{% if kolla_base_distro == "ubuntu" %}
# TODO: this workaround need to be fixed in Pike
# Ubuntu cloud archive released libvirt-bin version 2.5.0 which runs vms as
# libvirt-qemu user. This locks access to nova created files for vms which
# have permissions 722 for nova user. We need to force qemu to use this user
# to be able to access vm files.
# see https://bugs.launchpad.net/kolla-ansible/+bug/1668654
user = "nova"
group = "nova"
{% endif %}