From 8ccd9bf83b8b21f07646d75d93618170a8722cc5 Mon Sep 17 00:00:00 2001 From: Drew Walters Date: Thu, 17 Oct 2019 21:07:02 +0000 Subject: [PATCH] lists: Add Airship VMP mailing lists The Airship working committee is in the process of establishing a vulnerability management process. This change adds two mailing lists, airship-security and embargo-notice, which will provide public and private advisories related to reported security vulnerabilities. Change-Id: I1aa4d35cb12e4f3f45665688908af7e2cd5041a1 Signed-off-by: Drew Walters --- modules/openstack_project/manifests/lists.pp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/modules/openstack_project/manifests/lists.pp b/modules/openstack_project/manifests/lists.pp index fafe2ed295..60a8673d31 100644 --- a/modules/openstack_project/manifests/lists.pp +++ b/modules/openstack_project/manifests/lists.pp @@ -420,6 +420,22 @@ class openstack_project::lists( description => 'Notification messages for failures from CICD jobs.', } + mailman_list { 'airship-security@airship': + require => Mailman::Site['airship'], + ensure => present, + admin => 'andrew.walters@att.com', + password => $listpassword, + description => 'Public Airship security advisories.', + } + + mailman_list { 'airship-embargo-notice@airship': + require => Mailman::Site['airship'], + ensure => present, + admin => 'andrew.walters@att.com', + password => $listpassword, + description => 'Embargoed security vulnerability announcements for Airship consumers.', + } + mailman_list { 'mailman@starlingx': require => Mailman::Site['starlingx'], ensure => present,