From 9fc23dee97d8cf1d6e3880f0ae25b0962f19bb23 Mon Sep 17 00:00:00 2001 From: Michael Fulbright <89205663+mfulb@users.noreply.github.com> Date: Wed, 12 Nov 2025 15:08:46 -0500 Subject: [PATCH 1/4] Update php-agent-installation-ubuntu-debian.mdx --- .../installation/php-agent-installation-ubuntu-debian.mdx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/content/docs/apm/agents/php-agent/installation/php-agent-installation-ubuntu-debian.mdx b/src/content/docs/apm/agents/php-agent/installation/php-agent-installation-ubuntu-debian.mdx index aad384cc527..31bd4e18f59 100644 --- a/src/content/docs/apm/agents/php-agent/installation/php-agent-installation-ubuntu-debian.mdx +++ b/src/content/docs/apm/agents/php-agent/installation/php-agent-installation-ubuntu-debian.mdx @@ -34,10 +34,18 @@ This is the recommended method for New Relic installation and maintenance. #### 1. Trust the New Relic GPG key + For all Ubuntu releases and Debian releases _before_ Debian Trixie use this command: + ```bash wget -O- https://download.newrelic.com/NEWRELIC_APT_2DAD550E.public | sudo gpg --import --batch --no-default-keyring --keyring /usr/share/keyrings/download.newrelic.com-newrelic.gpg ``` + For Debian Trixie and later use this command: + + ```bash + wget -O- https://download.newrelic.com/NEWRELIC_APT_2DAD550E.public | sudo gpg --dearmor -o /usr/share/keyrings/download.newrelic.com-newrelic.gpg + ``` + This command installs New Relic's GPG key used by `apt` to verify signatures of packages in `http://apt.newrelic.com/debian/` apt repository added in next step. #### 2. Add `http://apt.newrelic.com/debian/` apt repository to `sources.list` From 1f268800a3e7b8be029bc3d82689fa774d022c36 Mon Sep 17 00:00:00 2001 From: Michael Fulbright <89205663+mfulb@users.noreply.github.com> Date: Wed, 12 Nov 2025 15:15:05 -0500 Subject: [PATCH 2/4] Update install-new-relic-php-agent-gae-flexible-environment.mdx --- .../install-new-relic-php-agent-gae-flexible-environment.mdx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/content/docs/apm/agents/php-agent/advanced-installation/install-new-relic-php-agent-gae-flexible-environment.mdx b/src/content/docs/apm/agents/php-agent/advanced-installation/install-new-relic-php-agent-gae-flexible-environment.mdx index e8e3242c051..2033e3e14e0 100644 --- a/src/content/docs/apm/agents/php-agent/advanced-installation/install-new-relic-php-agent-gae-flexible-environment.mdx +++ b/src/content/docs/apm/agents/php-agent/advanced-installation/install-new-relic-php-agent-gae-flexible-environment.mdx @@ -50,6 +50,11 @@ For more information about deploying and configuring your PHP app in the GAE fle RUN DEBIAN_FRONTEND=noninteractive apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y install newrelic-php5 RUN NR_INSTALL_KEY="new-relic-license-key" NR_INSTALL_SILENT=true newrelic-install install ``` + + NOTE: For Debian Trixie and later use the following `wget` command instead: + ```dockerfile + wget -O- https://download.newrelic.com/NEWRELIC_APT_2DAD550E.public | sudo gpg --dearmor -o /usr/share/keyrings/download.newrelic.com-newrelic.gpg + ``` Date: Wed, 12 Nov 2025 15:15:47 -0500 Subject: [PATCH 3/4] Update install-new-relic-php-agent-gae-flexible-environment.mdx --- .../install-new-relic-php-agent-gae-flexible-environment.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/content/docs/apm/agents/php-agent/advanced-installation/install-new-relic-php-agent-gae-flexible-environment.mdx b/src/content/docs/apm/agents/php-agent/advanced-installation/install-new-relic-php-agent-gae-flexible-environment.mdx index 2033e3e14e0..ab331524c4f 100644 --- a/src/content/docs/apm/agents/php-agent/advanced-installation/install-new-relic-php-agent-gae-flexible-environment.mdx +++ b/src/content/docs/apm/agents/php-agent/advanced-installation/install-new-relic-php-agent-gae-flexible-environment.mdx @@ -52,6 +52,7 @@ For more information about deploying and configuring your PHP app in the GAE fle ``` NOTE: For Debian Trixie and later use the following `wget` command instead: + ```dockerfile wget -O- https://download.newrelic.com/NEWRELIC_APT_2DAD550E.public | sudo gpg --dearmor -o /usr/share/keyrings/download.newrelic.com-newrelic.gpg ``` From ff910d1fde8b3b1a64feffdb5fcc7216961d02ba Mon Sep 17 00:00:00 2001 From: Abhilash Dutta Date: Thu, 13 Nov 2025 11:05:03 +0530 Subject: [PATCH 4/4] Update php-agent-installation-ubuntu-debian.mdx --- .../installation/php-agent-installation-ubuntu-debian.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/docs/apm/agents/php-agent/installation/php-agent-installation-ubuntu-debian.mdx b/src/content/docs/apm/agents/php-agent/installation/php-agent-installation-ubuntu-debian.mdx index 31bd4e18f59..0be702230b0 100644 --- a/src/content/docs/apm/agents/php-agent/installation/php-agent-installation-ubuntu-debian.mdx +++ b/src/content/docs/apm/agents/php-agent/installation/php-agent-installation-ubuntu-debian.mdx @@ -34,13 +34,13 @@ This is the recommended method for New Relic installation and maintenance. #### 1. Trust the New Relic GPG key - For all Ubuntu releases and Debian releases _before_ Debian Trixie use this command: + For all Ubuntu releases and Debian releases _before_ Debian Trixie use: ```bash wget -O- https://download.newrelic.com/NEWRELIC_APT_2DAD550E.public | sudo gpg --import --batch --no-default-keyring --keyring /usr/share/keyrings/download.newrelic.com-newrelic.gpg ``` - For Debian Trixie and later use this command: + For Debian Trixie and later use: ```bash wget -O- https://download.newrelic.com/NEWRELIC_APT_2DAD550E.public | sudo gpg --dearmor -o /usr/share/keyrings/download.newrelic.com-newrelic.gpg