Add stub text for USG and system CLAs in Gerrit.

Change-Id: I0743a79c5288df4725d8f27227738019c875f91c
Reviewed-on: https://review.openstack.org/23385
Reviewed-by: Clark Boylan <clark.boylan@gmail.com>
Approved: James E. Blair <corvus@inaugust.com>
Reviewed-by: James E. Blair <corvus@inaugust.com>
Tested-by: Jenkins
This commit is contained in:
Jeremy Stanley 2013-03-03 18:48:28 +00:00 committed by Jenkins
parent 6b95efed50
commit 3aa5507f58
3 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,13 @@
<html><body><div>
<h1>
Gerrit System Role Accounts Proxy CLA
</h1>
<p>
This is not a real CLA and cannot be signed. See <a
href="https://wiki.openstack.org/wiki/HowToContribute">https://wiki.openstack.org/wiki/HowToContribute</a>
for more information on OpenStack Contributor License Agreements.
</p>
</div></body></html>

View File

@ -0,0 +1,15 @@
<html><body><div>
<h1>
OpenStack Project U.S. Government Contributor License Agreement
</h1>
<p>
This agreement is not managed through Gerrit. If you need to sign the U.S.
Government Contributor License Agreement, please contact the OpenStack
Foundation to initiate the process. See <a
href="https://wiki.openstack.org/wiki/HowToContribute">https://wiki.openstack.org/wiki/HowToContribute</a>
for more information.
</p>
</div></body></html>

View File

@ -158,6 +158,26 @@ class openstack_project::gerrit (
require => Class['::gerrit'], require => Class['::gerrit'],
} }
file { '/home/gerrit2/review_site/static/usg-cla.html':
ensure => present,
owner => 'root',
group => 'root',
mode => '0444',
source => 'puppet:///modules/openstack_project/gerrit/usg-cla.html',
replace => true,
require => Class['::gerrit'],
}
file { '/home/gerrit2/review_site/static/system-cla.html':
ensure => present,
owner => 'root',
group => 'root',
mode => '0444',
source => 'puppet:///modules/openstack_project/gerrit/system-cla.html',
replace => true,
require => Class['::gerrit'],
}
file { '/home/gerrit2/review_site/static/title.png': file { '/home/gerrit2/review_site/static/title.png':
ensure => present, ensure => present,
source => 'puppet:///modules/openstack_project/openstack.png', source => 'puppet:///modules/openstack_project/openstack.png',