From 0ec6623ba69464d8eeef697fd82386f3f4ea01c9 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Fri, 27 May 2022 17:30:10 -0700 Subject: [PATCH] pkgs / dnf automatic: exclude mod_auth_openidc-2.3.7-11.module+el8.6.0+14082+b6f23e95 This update seems to cause segfaults in https pushes. Signed-off-by: Kevin Fenzi --- roles/dnf-automatic/templates/automatic.conf.j2 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/roles/dnf-automatic/templates/automatic.conf.j2 b/roles/dnf-automatic/templates/automatic.conf.j2 index ae58db0478..77e0f22ed8 100644 --- a/roles/dnf-automatic/templates/automatic.conf.j2 +++ b/roles/dnf-automatic/templates/automatic.conf.j2 @@ -60,3 +60,8 @@ exclude = httpd* # https://pagure.io/koji/issue/3351 exclude = git* {% endif %} +{% if inventory_hostname.startswith('pkgs') %} +# exclude mod_auth_openidc-2.3.7-11.module+el8.6.0+14082+b6f23e95 +# as it's causing segfaults in https pushes +exclude = mod_auth_openidc-2.3.7-11.module+el8.6.0+14082+b6f23e95 +{% endif %}