Merge "Align exim module parameter name with the tree"
This commit is contained in:
commit
067bc2f708
@ -4,7 +4,7 @@ class exim(
|
||||
$queue_run_max = '5',
|
||||
$queue_smtp_domains = '',
|
||||
$smarthost = false,
|
||||
$sysadmin = []
|
||||
$sysadmins = []
|
||||
) {
|
||||
|
||||
include exim::params
|
||||
|
@ -14,6 +14,6 @@ security: root
|
||||
|
||||
gerrit2: root
|
||||
jenkins: root
|
||||
<% if sysadmin.length > 0 -%>
|
||||
root: <%= sysadmin.join(",") %>
|
||||
<% if sysadmins.length > 0 -%>
|
||||
root: <%= sysadmins.join(",") %>
|
||||
<% end -%>
|
||||
|
@ -1,6 +1,4 @@
|
||||
# Class to configure cacti on a node.
|
||||
# Takes a list of sysadmin email addresses as a parameter. Exim will be
|
||||
# configured to email cron spam and other alerts to this list of admins.
|
||||
class openstack_project::cacti (
|
||||
$sysadmins = []
|
||||
) {
|
||||
|
@ -1,6 +1,4 @@
|
||||
# Class to configure graphite on a node.
|
||||
# Takes a list of sysadmin email addresses as a parameter. Exim will be
|
||||
# configured to email cron spam and other alerts to this list of admins.
|
||||
class openstack_project::graphite (
|
||||
$sysadmins = [],
|
||||
$graphite_admin_user = '',
|
||||
|
@ -14,7 +14,7 @@ class openstack_project::lists(
|
||||
$listdomain = 'lists.openstack.org'
|
||||
|
||||
class { 'exim':
|
||||
sysadmin => $listadmins,
|
||||
sysadmins => $listadmins,
|
||||
queue_interval => '1m',
|
||||
queue_run_max => '50',
|
||||
mailman_domains => [$listdomain],
|
||||
|
@ -21,6 +21,6 @@ class openstack_project::server (
|
||||
ca_server => $ca_server,
|
||||
}
|
||||
class { 'exim':
|
||||
sysadmin => $sysadmins,
|
||||
sysadmins => $sysadmins,
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user