From d50cc5d5d4a577ddd87f1e6bc77d25c509a31cb6 Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Mon, 7 May 2018 18:58:18 +0100 Subject: [PATCH] base/nova-compute: install udev/systemd to satisfy dependencies For Debian we use 'stretch-backports' image due to requirements of some images. That means that we also have systemd from backports. This breaks 'open-iscsi' (base) and 'python-guestfs' (nova-compute) installation. Solution is to install 'udev' and 'systemd' in proper versions. INFO:kolla.common.utils.base:Some packages could not be installed. This may mean that you have INFO:kolla.common.utils.base:requested an impossible situation or if you are using the unstable INFO:kolla.common.utils.base:distribution that some required packages have not yet been created INFO:kolla.common.utils.base:or been moved out of Incoming. INFO:kolla.common.utils.base:The following information may help to resolve the situation: INFO:kolla.common.utils.base:The following packages have unmet dependencies: INFO:kolla.common.utils.base: open-iscsi : Depends: udev but it is not going to be installed INFO:kolla.common.utils.base:E: Unable to correct problems, you have held broken packages. INFO:kolla.common.utils.nova-compute: python-guestfs : Depends: libguestfs0 (= 1:1.34.6-2) but it is not going to be installed INFO:kolla.common.utils.nova-compute:E: Unable to correct problems, you have held broken packages. Closes-bug: #1769850 Change-Id: I4865c279d665cf34fc150794c01368a1602319f0 --- docker/base/Dockerfile.j2 | 5 +++++ docker/nova/nova-compute/Dockerfile.j2 | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/docker/base/Dockerfile.j2 b/docker/base/Dockerfile.j2 index cf1370ec63..c5bda8c761 100644 --- a/docker/base/Dockerfile.j2 +++ b/docker/base/Dockerfile.j2 @@ -303,6 +303,11 @@ COPY apt_preferences.{{ base_distro }} /etc/apt/preferences 'sudo', 'tgt'] %} + +{% if base_distro in ['debian'] %} + {% set base_apt_packages = base_apt_packages + [ 'udev/stretch-backports' ] %} +{% endif %} + {% set base_compiler_packages = [ 'build-essential' ] %} diff --git a/docker/nova/nova-compute/Dockerfile.j2 b/docker/nova/nova-compute/Dockerfile.j2 index 8636211776..de8f1c821d 100644 --- a/docker/nova/nova-compute/Dockerfile.j2 +++ b/docker/nova/nova-compute/Dockerfile.j2 @@ -48,9 +48,11 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build ] %} # Debian/stretch uses rtslib-fb (like CentOS does) + # systemd is needed to get python-guestfs installed {% if base_distro == 'debian' %} {% set nova_compute_packages = nova_compute_packages + [ 'python-rtslib-fb', + 'systemd/stretch-backports', 'targetcli-fb' ] %} {% elif base_distro == 'ubuntu' %} @@ -111,9 +113,11 @@ RUN rm -f /etc/nova/nova-compute.conf {% endif %} # Debian/stretch uses rtslib-fb (like CentOS does) + # systemd is needed to get python-guestfs installed {% if base_distro == 'debian' %} {% set nova_compute_packages = nova_compute_packages + [ 'python-rtslib-fb', + 'systemd/stretch-backports', 'targetcli-fb' ] %} {% elif base_distro == 'ubuntu' %}