f31a426c65
Now with extra unwrap! Change-Id: I7c622ffa77821f33f911793fc6b6cdaaba37904a Reviewed-on: https://review.openstack.org/15052 Reviewed-by: Clark Boylan <clark.boylan@gmail.com> Approved: Jeremy Stanley <fungi@yuggoth.org> Reviewed-by: Jeremy Stanley <fungi@yuggoth.org> Tested-by: Jenkins
25 lines
646 B
Puppet
25 lines
646 B
Puppet
# == Class: openstack_project::lists
|
|
#
|
|
class openstack_project::lists($listadmins = '') {
|
|
# Using openstack_project::template instead of openstack_project::server
|
|
# because the exim config on this machine is almost certainly
|
|
# going to be more complicated than normal.
|
|
class { 'openstack_project::template':
|
|
iptables_public_tcp_ports => [25, 80, 465],
|
|
}
|
|
|
|
class { 'exim':
|
|
sysadmin => $listadmins,
|
|
mailman_domains => ['lists.openstack.org'],
|
|
}
|
|
|
|
class { 'mailman':
|
|
vhost_name => 'lists.openstack.org',
|
|
}
|
|
|
|
realize (
|
|
User::Virtual::Localuser['oubiwann'],
|
|
User::Virtual::Localuser['smaffulli'],
|
|
)
|
|
}
|