
The RHEL suppplied ansible-freeipa RPM package installs the modules at the default ansible module path and not as a collection. This caused problems for the end user. This also changes the linter job to run on CentOS, since the ansible-freeipa package is not available on Ubuntu. This also reverts commit 2cc09a2b68c5b64b35742de91d4e7c0cd73f188c. Reason for revert: We get this error: error={"msg": "template error while templating string: cannot import name 'environmentfilter' from 'jinja2.filters' (/usr/lib/python3.9/site-packages/ansible/_vendor/jinja2/filters.py)\n line 0. String: {{ 'A' if record_value | ansible.utils.ipv4 else 'AAAA' }}"} Change-Id: I7df25fb945da1d98c68fe4113a09afdc2f2c5687
43 lines
1.5 KiB
Plaintext
43 lines
1.5 KiB
Plaintext
# This file facilitates OpenStack-CI package installation
|
|
# before the execution of any tests.
|
|
#
|
|
# See the following for details:
|
|
# - https://docs.openstack.org/infra/bindep/
|
|
# - https://opendev.org/opendev/bindep/
|
|
#
|
|
# Even if the role does not make use of this facility, it
|
|
# is better to have this file empty, otherwise OpenStack-CI
|
|
# will fall back to installing its default packages which
|
|
# will potentially be detrimental to the tests executed.
|
|
|
|
# The gcc compiler
|
|
gcc
|
|
|
|
# Base requirements for RPM distros
|
|
gcc-c++ [platform:rpm]
|
|
git [platform:rpm]
|
|
libffi-devel [platform:rpm]
|
|
openssl-devel [platform:rpm]
|
|
podman [platform:rpm]
|
|
python-devel [platform:rpm !platform:rhel-8 !platform:centos-8]
|
|
python3-devel [platform:rpm !platform:rhel-7 !platform:centos-7]
|
|
PyYAML [platform:rpm !platform:rhel-8 !platform:centos-8 !platform:rhel-9 !platform:centos-9 !platform:fedora]
|
|
python3-pyyaml [platform:rpm !platform:rhel-7 !platform:centos-7]
|
|
python3-dnf [platform:rpm !platform:rhel-7 !platform:centos-7]
|
|
|
|
# SELinux cent7
|
|
libselinux-python3 [platform:rpm !platform:rhel-8 !platform:centos-8]
|
|
libsemanage-python3 [platform:redhat !platform:rhel-8 !platform:centos-8]
|
|
# SELinux cent8
|
|
python3-libselinux [platform:rpm !platform:rhel-7 !platform:centos-7]
|
|
python3-libsemanage [platform:redhat !platform:rhel-7 !platform:centos-7]
|
|
|
|
# Required for compressing collected log files in CI
|
|
gzip
|
|
|
|
# Required to build language docs
|
|
gettext
|
|
|
|
# Install ansible-freeipa to default ansible path
|
|
ansible-freeipa [platform:redhat]
|