Monty Taylor abd563b5e1 Control admin lists from hiera.
Change-Id: I9677484fa6a05353809a104c0756800ce56371fc
2012-07-23 17:38:22 -05:00

22 lines
547 B
Puppet

class openstack_project::lists {
# 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 => hiera('listadmins'),
mailman_domains => ['lists.openstack.org'],
}
class { 'mailman':
mailman_host => 'lists.openstack.org'
}
realize (
User::Virtual::Localuser["oubiwann"],
)
}