Prevent virbr0 from being created by default

Small change to remove the default network since neutron handles all
of the bridge and veth creation. virbr0 becomes clutter.

CentOS doesn't seem to come with this default.xml network, so no
change there.

Note: This doesn't remove virbr0 from a running system, it only
prevents its creation.

Change-Id: I8e118ea285c674a47884bbe864df134133406bbc
Closes-Bug: #1512060
Potential-Backport: Liberty
This commit is contained in:
Sam Yaple 2015-11-01 07:31:07 +00:00
parent 9bb4058489
commit 0c9d5c4c26

View File

@ -24,7 +24,8 @@ RUN apt-get install -y --no-install-recommends \
qemu-block-extra \
ebtables \
&& apt-get clean \
&& mkdir -p /etc/ceph
&& mkdir -p /etc/ceph \
&& rm /etc/libvirt/qemu/networks/default.xml /etc/libvirt/qemu/networks/autostart/default.xml
{% endif %}