Bump qemu version to 2.7 (backports)

Change-Id: I6c347b4e176d5ef9423c184c85b328edad8b6a52
This commit is contained in:
Proskurin Kirill 2016-12-16 11:56:50 +00:00
parent 450728a867
commit a356bcc496
2 changed files with 10 additions and 5 deletions

View File

@ -1,10 +1,12 @@
FROM {{ image_spec("nova-base") }}
MAINTAINER {{ maintainer }}
RUN apt-get -y install --no-install-recommends \
RUN apt-get update \
&& apt-get -y install -t jessie-backports --no-install-recommends \
qemu-utils \
&& apt-get -y install --no-install-recommends \
libvirt-dev \
python-libvirt \
qemu-utils \
ceph-common \
python-ceph \
python-rados \

View File

@ -1,15 +1,18 @@
FROM {{ image_spec("nova-base") }}
MAINTAINER {{ maintainer }}
RUN apt-get -y install --no-install-recommends \
RUN apt-get update \
&& apt-get -y install -t jessie-backports --no-install-recommends \
qemu-kvm \
qemu-block-extra \
&& apt-get -y install --no-install-recommends \
ceph-common \
python-ceph \
python-rados \
libvirt-bin \
dmidecode \
pm-utils \
qemu-kvm \
qemu-block-extra \
ebtables \
xen-utils-4.4 \
&& apt-get clean \