Skip to content
Snippets Groups Projects
Commit eaf096b2 authored by Ryan Hallisey's avatar Ryan Hallisey
Browse files

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: default avatarIan Main <imain@redhat.com>
Closes-Bug: #1486100
parent 9d23f128
No related branches found
No related tags found
No related merge requests found
#!/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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment