5250ec59c9
Change-Id: I0ff003766a0a659f105f0b9c0c32e46641f1ecbd Reviewed-on: https://review.openstack.org/13586 Reviewed-by: Clark Boylan <clark.boylan@gmail.com> Approved: Monty Taylor <mordred@inaugust.com> Reviewed-by: Monty Taylor <mordred@inaugust.com> Tested-by: Jenkins
23 lines
593 B
Puppet
23 lines
593 B
Puppet
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"],
|
|
)
|
|
}
|