Merge "Adds python3-systemd for ansible deploy interface" into stable/train

This commit is contained in:
Zuul 2020-03-16 10:31:44 +00:00 committed by Gerrit Code Review
commit 22352f2b5b
2 changed files with 9 additions and 0 deletions

View File

@ -102,11 +102,13 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
# by EPEL8.
{% if distro_python_version.startswith('3') %}
{% set ironic_conductor_packages = ironic_conductor_packages + [
'python3-systemd',
'systemd-udev',
] %}
{% else %}
{% set ironic_conductor_packages = ironic_conductor_packages + [
'shellinabox',
'systemd-python',
'systemd',
] %}
{% endif %}
@ -129,6 +131,7 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
'openssh-client',
'parted',
'psmisc',
'python3-systemd',
'qemu-utils',
'shellinabox',
'udev',

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Adds python3-systemd package to ironic-conductor source based
container to allow the Ansible deploy interface to function
correctly. Fixes bug #1861427