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:
parent
6b95efed50
commit
3aa5507f58
13
modules/openstack_project/files/gerrit/system-cla.html
Normal file
13
modules/openstack_project/files/gerrit/system-cla.html
Normal 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>
|
15
modules/openstack_project/files/gerrit/usg-cla.html
Normal file
15
modules/openstack_project/files/gerrit/usg-cla.html
Normal 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>
|
@ -158,6 +158,26 @@ class openstack_project::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':
|
||||
ensure => present,
|
||||
source => 'puppet:///modules/openstack_project/openstack.png',
|
||||
|
Loading…
Reference in New Issue
Block a user