Merge "make contactstore option overridable"

This commit is contained in:
Jenkins 2014-04-11 22:34:16 +00:00 committed by Gerrit Code Review
commit b76b37c3ee
2 changed files with 4 additions and 2 deletions

View File

@ -67,6 +67,7 @@ class openstack_project::review (
$lp_sync_secret='',
# For gerrit's contactstore feature
# https://review.openstack.org/Documentation/config-contact.html
$contactstore = true,
$contactstore_appsec='',
$contactstore_pubkey='',
$sysadmins = [],
@ -113,7 +114,7 @@ class openstack_project::review (
httpd_maxwait => '5000min',
war =>
'http://tarballs.openstack.org/ci/gerrit-2.4.4-14-gab7f4c1.war',
contactstore => true,
contactstore => $contactstore,
contactstore_appsec => $contactstore_appsec,
contactstore_pubkey => $contactstore_pubkey,
contactstore_url =>

View File

@ -7,6 +7,7 @@ class openstack_project::review_dev (
$mysql_password = '',
$mysql_root_password = '',
$email_private_key = '',
$contactstore = true,
$contactstore_appsec = '',
$contactstore_pubkey = '',
$ssh_dsa_key_contents = '',
@ -50,7 +51,7 @@ class openstack_project::review_dev (
email => 'review-dev@openstack.org',
war =>
'http://tarballs.openstack.org/ci/gerrit/gerrit-v2.8.3.5.ce9b043.war',
contactstore => true,
contactstore => $contactstore,
contactstore_appsec => $contactstore_appsec,
contactstore_pubkey => $contactstore_pubkey,
contactstore_url =>