Merge "Creates mailing lists for Airship projects"
This commit is contained in:
commit
0f4fc7c037
@ -5,7 +5,7 @@ class openstack_project::lists(
|
|||||||
$listpassword = ''
|
$listpassword = ''
|
||||||
) {
|
) {
|
||||||
|
|
||||||
$mm_domains='lists.openstack.org:lists.zuul-ci.org'
|
$mm_domains='lists.openstack.org:lists.zuul-ci.org:lists.airshipit.org'
|
||||||
|
|
||||||
class { 'mailman':
|
class { 'mailman':
|
||||||
multihost => true,
|
multihost => true,
|
||||||
@ -140,6 +140,11 @@ class openstack_project::lists(
|
|||||||
default_url_host => 'lists.zuul-ci.org',
|
default_url_host => 'lists.zuul-ci.org',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
mailman::site { 'airship':
|
||||||
|
default_email_host => 'lists.airshipit.org',
|
||||||
|
default_url_host => 'lists.airshipit.org',
|
||||||
|
}
|
||||||
|
|
||||||
# Add new mailing lists below this line
|
# Add new mailing lists below this line
|
||||||
|
|
||||||
mailman_list { 'mailman@openstack':
|
mailman_list { 'mailman@openstack':
|
||||||
@ -511,4 +516,27 @@ class openstack_project::lists(
|
|||||||
description => 'Discussion of Zuul usage and development.',
|
description => 'Discussion of Zuul usage and development.',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
mailman_list { 'mailman@airship':
|
||||||
|
require => Mailman::Site['airship'],
|
||||||
|
ensure => present,
|
||||||
|
admin => 'nobody@openstack.org',
|
||||||
|
password => $listpassword,
|
||||||
|
description => 'The mailman site list',
|
||||||
|
}
|
||||||
|
|
||||||
|
mailman_list { 'airship-announce@airship':
|
||||||
|
require => Mailman::Site['airship'],
|
||||||
|
ensure => present,
|
||||||
|
admin => 'jonathan@openstack.org',
|
||||||
|
password => $listpassword,
|
||||||
|
description => 'Announcements of Airship releases and other important information.',
|
||||||
|
}
|
||||||
|
|
||||||
|
mailman_list { 'airship-discuss@airship':
|
||||||
|
require => Mailman::Site['airship'],
|
||||||
|
ensure => present,
|
||||||
|
admin => 'jonathan@openstack.org',
|
||||||
|
password => $listpassword,
|
||||||
|
description => 'Discussion of Airship usage and development.',
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user