Add exclude on httpd for proxies to avoid upgrading to new buggy version.

Also, remove old armv7 entry thats no longer needed.

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
Kevin Fenzi 2022-03-20 18:18:13 -07:00
parent 5fddb10219
commit 1c7838b25a

View file

@ -49,8 +49,8 @@ email_host = localhost
# Use this to filter DNF core messages
debuglevel = 1
{% if ansible_architecture == 'armv7l' %}
# On arm builders, do not uppdate dnf or rpm.
# https://bugzilla.redhat.com/show_bug.cgi?id=1691430
exclude = dnf*,python3-dnf*,python3-libdnf,python3-hawkey,libdnf,libsolv,librepo
{% if inventory_hostname.startswith('proxy') %}
# exclude httpd for now as it's causing lockups in httpd-2.4.52+
# https://bz.apache.org/bugzilla/show_bug.cgi?id=65769
exclude = httpd*
{% endif %}