Add sender email for storyboard.openstack.org

This patch updates the sender email from the default
no-reply@storyboard.openstack.org to
storyboard@storyboard.openstack.org , as the former user is not
recognised. By doing it here, we avoid changing the global defaults,
as per the comments in this patch:
https://review.openstack.org/#/c/293080/

Change-Id: Ic4d12ab42687aaf4d0157aa5155ad7d81b94bacb
This commit is contained in:
Zara 2016-03-16 10:48:23 +00:00
parent e05ef9a447
commit 31b043c3fb
2 changed files with 3 additions and 0 deletions

View File

@ -614,6 +614,7 @@ node 'storyboard.openstack.org' {
"https://${::fqdn}",
'http://docs-draft.openstack.org',
],
sender_email_address => 'storyboard@storyboard.openstack.org',
}
}

View File

@ -15,6 +15,7 @@ class openstack_project::storyboard(
$hostname = $::fqdn,
$valid_oauth_clients = [$::fqdn],
$cors_allowed_origins = ["https://${::fqdn}"],
$sender_email_address = undef,
) {
class { 'project_config':
@ -94,6 +95,7 @@ class openstack_project::storyboard(
rabbitmq_vhost => '/',
rabbitmq_user => $rabbitmq_user,
rabbitmq_user_password => $rabbitmq_password,
sender_email_address => $sender_email_address,
}
class { '::storyboard::rabbit':