This is an automated email from the ASF dual-hosted git repository. espino pushed a commit to branch REL_2_STABLE in repository https://gitbox.apache.org/repos/asf/cloudberry.git
commit e3e3fcde8d53e7bd2c4512ff918f2e265a852c13 Author: Dianjin Wang <[email protected]> AuthorDate: Fri Jun 27 17:40:36 2025 +0800 Add the notice to greenplum-path* scripts Add notice header text to the following source files to clarify Cloudberry's relationship with VMware Tanzu Greenplum and Broadcom Inc: - gpAux/client/scripts/greenplum_clients_path.sh - gpMgmt/bin/generate-greenplum-path.sh Also, will print the notice text when sourcing greenplum_path.sh file. See discussion: https://lists.apache.org/thread/b8o974mnnqk6zpy86dgll2pgqcvqgnwm --- gpAux/client/scripts/greenplum_clients_path.sh | 16 +++++++++++ gpMgmt/bin/generate-greenplum-path.sh | 37 ++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) diff --git a/gpAux/client/scripts/greenplum_clients_path.sh b/gpAux/client/scripts/greenplum_clients_path.sh index a42d135c9ad..53dd4a286aa 100644 --- a/gpAux/client/scripts/greenplum_clients_path.sh +++ b/gpAux/client/scripts/greenplum_clients_path.sh @@ -1,3 +1,19 @@ +# -------------------------------------------------------------------- +# NOTICE from the Apache Cloudberry PPMC +# -------------------------------------------------------------------- +# This file uses the term 'greenplum' to maintain compatibility with +# earlier versions of Apache Cloudberry, which was originally called +# Greenplum. This usage does not refer to VMware Tanzu Greenplum, +# nor does it imply that Apache Cloudberry (Incubating) is affiliated +# with, endorsed by, or sponsored by Broadcom Inc. +# +# This file will be renamed in a future Apache Cloudberry release to +# ensure compliance with Apache Software Foundation guidelines. +# We will announce the change on the project mailing list and website. +# +# See: https://lists.apache.org/thread/b8o974mnnqk6zpy86dgll2pgqcvqgnwm +# -------------------------------------------------------------------- + if test -n "${ZSH_VERSION:-}"; then # zsh SCRIPT_PATH="${(%):-%x}" diff --git a/gpMgmt/bin/generate-greenplum-path.sh b/gpMgmt/bin/generate-greenplum-path.sh index 7f1f9074efc..5a3b6e35698 100755 --- a/gpMgmt/bin/generate-greenplum-path.sh +++ b/gpMgmt/bin/generate-greenplum-path.sh @@ -1,4 +1,41 @@ #!/usr/bin/env bash +# -------------------------------------------------------------------- +# NOTICE from the Apache Cloudberry PPMC +# -------------------------------------------------------------------- +# This file uses the term 'greenplum' to maintain compatibility with +# earlier versions of Apache Cloudberry, which was originally called +# Greenplum. This usage does not refer to VMware Tanzu Greenplum, +# nor does it imply that Apache Cloudberry (Incubating) is affiliated +# with, endorsed by, or sponsored by Broadcom Inc. +# +# This file will be renamed in a future Apache Cloudberry release to +# ensure compliance with Apache Software Foundation guidelines. +# We will announce the change on the project mailing list and website. +# +# See: https://lists.apache.org/thread/b8o974mnnqk6zpy86dgll2pgqcvqgnwm +# -------------------------------------------------------------------- + +cat <<"EOF" +if [ -n "${PS1-}" ]; then + echo " +# -------------------------------------------------------------------- +# NOTICE from the Apache Cloudberry PPMC +# -------------------------------------------------------------------- +# This file uses the term 'greenplum' to maintain compatibility with +# earlier versions of Apache Cloudberry, which was originally called +# Greenplum. This usage does not refer to VMware Tanzu Greenplum, +# nor does it imply that Apache Cloudberry (Incubating) is affiliated +# with, endorsed by, or sponsored by Broadcom Inc. +# +# This file will be renamed in a future Apache Cloudberry release to +# ensure compliance with Apache Software Foundation guidelines. +# We will announce the change on the project mailing list and website. +# +# See: https://lists.apache.org/thread/b8o974mnnqk6zpy86dgll2pgqcvqgnwm +# -------------------------------------------------------------------- +" +fi +EOF cat <<"EOF" if test -n "${ZSH_VERSION:-}"; then --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
