From eaf096b26104aa92bd21706fdc34a3e453c50be6 Mon Sep 17 00:00:00 2001 From: Ryan Hallisey Date: Tue, 18 Aug 2015 11:27:58 -0400 Subject: [PATCH] Libvirt is moving around the wrong config file Libvirt uses libvirtd.conf not libvirt.conf. Currently, the config file get copied to '/etc/libvirt/libvirt.conf' and libvirt creates its own libvirtd.conf and ignores the configured libvirt. Change-Id: I7a55b92c33ade72b7ac8ba028c67313479ad8343 Co-Authored-By: Ian Main Closes-Bug: #1486100 --- docker/common/nova/nova-libvirt/config-external.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/common/nova/nova-libvirt/config-external.sh b/docker/common/nova/nova-libvirt/config-external.sh index 053b9fe1b0..acc1c5473b 100755 --- a/docker/common/nova/nova-libvirt/config-external.sh +++ b/docker/common/nova/nova-libvirt/config-external.sh @@ -1,6 +1,6 @@ #!/bin/bash -SOURCE="/opt/kolla/libvirt/libvirt.conf" -TARGET="/etc/libvirt/libvirt.conf" +SOURCE="/opt/kolla/libvirt/libvirtd.conf" +TARGET="/etc/libvirt/libvirtd.conf" OWNER="libvirt" if [[ -f "$SOURCE" ]]; then