make contactstore option overridable
This change allows a parent puppet module to easily override the contactstore setting. I found that it makes it easier to test gerrit if i can turn off contactstore on my test config. Change-Id: I5128013b8c196fd956237baebe02f57b771a1e89
This commit is contained in:
parent
0ca0fb35cf
commit
922dbc8440
@ -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 =>
|
||||
|
@ -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 =>
|
||||
|
Loading…
x
Reference in New Issue
Block a user