bab6fcad3c
Now that we've got base server stuff rewritten in ansible, remove the old puppet versions. Depends-On: https://review.openstack.org/588326 Change-Id: I5c82fe6fd25b9ddaa77747db377ffa7e8bf23c7b
33 lines
827 B
Puppet
33 lines
827 B
Puppet
# == Class: openstack_project::kata_lists
|
|
#
|
|
class openstack_project::kata_lists(
|
|
$listpassword = ''
|
|
) {
|
|
|
|
class { 'mailman':
|
|
vhost_name => 'lists.katacontainers.io'
|
|
}
|
|
|
|
Maillist {
|
|
provider => 'noaliasmailman',
|
|
}
|
|
|
|
maillist { 'kata-dev':
|
|
ensure => present,
|
|
admin => 'jonathan@openstack.org',
|
|
password => $listpassword,
|
|
description => 'Kata Containers Development Mailing List (not for usage questions)',
|
|
webserver => $listdomain,
|
|
mailserver => $listdomain,
|
|
}
|
|
|
|
maillist { 'kata-hypervisor':
|
|
ensure => present,
|
|
admin => 'jonathan@openstack.org',
|
|
password => $listpassword,
|
|
description => 'Discussion of security and virtualization targeted at container use cases',
|
|
webserver => $listdomain,
|
|
mailserver => $listdomain,
|
|
}
|
|
}
|