From bdb6e7b8f809f5dc1de5f401e3526e97aa4758c8 Mon Sep 17 00:00:00 2001 From: Wes Wilson Date: Thu, 7 Oct 2021 09:58:14 -0700 Subject: [PATCH] Update ICLA to reference OpenInfra Change-Id: Ifc9feaefcd64bb2e6ca060b5bd3aac5ed6345f9c --- playbooks/zuul/gerrit/files/static/cla.html | 20 +++----------------- testinfra/test_gerrit.py | 4 ++-- 2 files changed, 5 insertions(+), 19 deletions(-) diff --git a/playbooks/zuul/gerrit/files/static/cla.html b/playbooks/zuul/gerrit/files/static/cla.html index 83f8688a7a..8a61aec881 100644 --- a/playbooks/zuul/gerrit/files/static/cla.html +++ b/playbooks/zuul/gerrit/files/static/cla.html @@ -1,29 +1,15 @@

-OpenStack Project Individual Contributor License Agreement +OpenInfra Foundation Individual Contributor License Agreement

-In order to clarify the intellectual property license granted with -Contributions from any person or entity, the OpenStack Project (the "Project") -must have a Contributor License Agreement ("Agreement") on file that has been -signed by each Contributor, indicating agreement to the license terms below. -This license is for your protection as a Contributor as well as the protection -of OpenStack Foundation as Project manager (the "Project Manager") and the -Project users; it does not change your rights to use your own Contributions for -any other purpose. +In order to clarify the intellectual property license granted with Contributions from any person or entity, the OpenStack Foundation d/b/a Open Infrastructure Foundation must have a Contributor License Agreement ("Agreement") on file that has been signed by each Contributor, indicating agreement to the license terms below for Contributions to any project owned or managed by the OpenStack Foundation d/b/a Open Infrastructure Foundation ("Project"). This license is for your protection as a Contributor as well as the protection of OpenStack Foundation d/b/a Open Infrastructure Foundation as Project Manager (the "Project Manager") and the Project users; it does not change your rights to use your own Contributions for any other purpose.

diff --git a/testinfra/test_gerrit.py b/testinfra/test_gerrit.py index fd9218bb19..c824f7ea08 100644 --- a/testinfra/test_gerrit.py +++ b/testinfra/test_gerrit.py @@ -58,10 +58,10 @@ def test_opendev_logo(host): assert '200 OK' in cmd.stdout assert 'Content-Type: image/png' in cmd.stdout -def test_openstack_cla(host): +def test_openinfra_cla(host): cmd = host.run('curl --include --insecure ' '--resolve review.opendev.org:443:127.0.0.1 ' 'https://review.opendev.org/static/cla.html') assert '200 OK' in cmd.stdout assert 'Content-Type: text/html' in cmd.stdout - assert 'OpenStack Project Individual Contributor License Agreement' in cmd.stdout + assert 'OpenInfra Foundation Individual Contributor License Agreement' in cmd.stdout