From be634e0ec392e70d3ebc0975a0cb330a4f69e15d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Kone=C4=8Dn=C3=BD?= Date: Thu, 4 May 2023 11:26:52 +0200 Subject: [PATCH] [bodhi-backend] Import the correct pungi general configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I forgot to update imports when I renamed the file during migration to templates. This caused the non-template file to be imported instead, which was the reason of the error. Signed-off-by: Michal Konečný --- roles/bodhi2/backend/templates/pungi.module.conf.j2 | 4 ++-- roles/bodhi2/backend/templates/pungi.rpm.conf.j2 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/bodhi2/backend/templates/pungi.module.conf.j2 b/roles/bodhi2/backend/templates/pungi.module.conf.j2 index 905eb5b631..420f56885c 100644 --- a/roles/bodhi2/backend/templates/pungi.module.conf.j2 +++ b/roles/bodhi2/backend/templates/pungi.module.conf.j2 @@ -1,5 +1,5 @@ -# Import shared settings from pungi_general.conf -from pungi_general import * +# Import shared settings from pungi.general.conf +from pungi.general import * # Import multilib settings from pungi_multilib.conf from pungi_multilib import * diff --git a/roles/bodhi2/backend/templates/pungi.rpm.conf.j2 b/roles/bodhi2/backend/templates/pungi.rpm.conf.j2 index 752b39475f..2ebb08d4ad 100644 --- a/roles/bodhi2/backend/templates/pungi.rpm.conf.j2 +++ b/roles/bodhi2/backend/templates/pungi.rpm.conf.j2 @@ -1,5 +1,5 @@ -# Import shared settings from pungi_general.conf -from pungi_general import * +# Import shared settings from pungi.general.conf +from pungi.general import * # Import multilib settings from pungi_multilib.conf from pungi_multilib import *