tripleo-image-elements/elements/nova-kvm/install.d/81-nova-kvm

22 lines
669 B
Bash
Executable File

#!/bin/bash
set -eux
# We delete the default libvirt network to avoid a possible
# collision with the network on the seed host machine
rm -f /etc/libvirt/qemu/networks/autostart/default.xml
rm -f /etc/libvirt/qemu/networks/default.xml
register-state-path --leave-symlink /etc/libvirt/qemu
SCRIPTDIR=$(dirname $0)
if [ -f /etc/sysconfig/libvirtd ]; then
install -D -g root -o root -m 0755 ${SCRIPTDIR}/default_libvirtd /etc/sysconfig/libvirtd
elif [ -f /etc/default/libvirt-bin ]; then
install -D -g root -o root -m 0755 ${SCRIPTDIR}/default_libvirt_bin /etc/default/libvirt-bin
else
echo "Unsupported libvirtd/libvirt-bin configuration."
exit 1
fi