
Add tests to ensure the mailman_list and maillist providers work as expected. Change-Id: I7b54a364f55bde50390fef5eb017576285e59458
18 lines
430 B
Puppet
18 lines
430 B
Puppet
file { '/srv/mailman':
|
|
ensure => directory,
|
|
}
|
|
class { 'mailman':
|
|
vhost_name => 'lists.openstack.org',
|
|
}
|
|
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,
|
|
}
|