Create release-announce mailing list

Create a separate release-announce list for all official
OpenStack releases announcement. As explained in [1] this
should allow to cut the noise generated on openstack-dev
and openstack-announce by release automation now that it is
supporting all official OpenStack projects.

[1] http://lists.openstack.org/pipermail/openstack-dev/2016-November/106579.html

Change-Id: I97e7233a97e80ddf3d383556dd41c20b1c6ad056
This commit is contained in:
Thierry Carrez 2016-11-07 14:04:39 +01:00
parent 5d919f823c
commit 0b2b00de6a

View File

@ -367,6 +367,7 @@ class openstack_project::lists(
webserver => $listdomain,
mailserver => $listdomain,
}
maillist { 'embargo-notice':
ensure => present,
admin => 'jeremy@openstack.org',
@ -375,4 +376,13 @@ class openstack_project::lists(
webserver => $listdomain,
mailserver => $listdomain,
}
maillist { 'release-announce':
ensure => present,
admin => 'thierry@openstack.org',
password => $listpassword,
description => 'Announcement of official OpenStack releases.',
webserver => $listdomain,
mailserver => $listdomain,
}
}