system-config/modules/openstack_project/manifests/kata_lists.pp
Monty Taylor bab6fcad3c
Remove base.yaml things from openstack_project::server
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
2018-08-16 17:25:10 -05:00

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,
}
}