From 196b081159de69a04ec093c3be2ac842e9e23467 Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Tue, 14 Dec 2021 21:02:12 +0000 Subject: [PATCH] Add "mailman" meta-list to lists.katacontainers.io Mailman uses a (usually hidden) mailing list named "mailman" to handle things like password reminders and certain other sorts of notifications. We have one in the configuration for all the sites on lists.openstack.org but not on lists.katacontainers.io, even though the production server has one. Not creating this list will cause the services to fail to start, and since we want to test restarting them in an upcoming change, add the missing entry (it will be a no-op in production anyway). Change-Id: If06d9d060e40055f95c1df337eb6f32c6064a89f --- inventory/service/host_vars/lists.katacontainers.io.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/inventory/service/host_vars/lists.katacontainers.io.yaml b/inventory/service/host_vars/lists.katacontainers.io.yaml index e3788a85fa..1ed231f0eb 100644 --- a/inventory/service/host_vars/lists.katacontainers.io.yaml +++ b/inventory/service/host_vars/lists.katacontainers.io.yaml @@ -61,6 +61,10 @@ extra_users: mailman_multihost: false mailman_listdomain: 'lists.katacontainers.io' mailman_lists: + - name: mailman + description: 'The mailman site list' + admin: 'nobody@openstack.org' + password: "{{ mailman_list_password }}" - name: kata-dev description: 'Kata Containers Development Mailing List (not for usage questions)' admin: 'jonathan@openstack.org'