From 1dbb42ae89e6aae2eff5a898486d6d7d6a0ed662 Mon Sep 17 00:00:00 2001 From: Michal Konecny Date: Mon, 25 Mar 2024 15:35:41 +0100 Subject: [PATCH] [mailman3] Use the correct variable names There was an inconsistency between variable names in configuration file and how the actual variable is defined. Signed-off-by: Michal Konecny --- roles/mailman3/templates/mailman.cfg.j2 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/roles/mailman3/templates/mailman.cfg.j2 b/roles/mailman3/templates/mailman.cfg.j2 index e8187c69b0..e465def2b1 100644 --- a/roles/mailman3/templates/mailman.cfg.j2 +++ b/roles/mailman3/templates/mailman.cfg.j2 @@ -37,15 +37,15 @@ configuration: /etc/mailman3.d/hyperkitty.cfg [webservice] hostname: localhost port: 8001 -admin_user: {{ mailman3_rest_api_user }} -admin_pass: {{ mailman3_rest_api_pass }} -workers: {{ mailman3_rest_api_workers }} +admin_user: {{ mailman_rest_api_user }} +admin_pass: {{ mailman_rest_api_pass }} +workers: {{ mailman_rest_api_workers }} {% for item in mailman3_log_items %} [loggin.{{ item }}] -level: {{ mailman3_log_level }} -path: {{ mailman3_log_directory }}/{{ item }}.log +level: {{ mailman_log_level }} +path: {{ mailman_log_directory }}/{{ item }}.log {% endfor %}