From d62653503dd0efbe40af6039fe558abd9b319fe9 Mon Sep 17 00:00:00 2001 From: Marty T <120425148+tippmar-nr@users.noreply.github.com> Date: Mon, 20 May 2024 10:32:10 -0500 Subject: [PATCH] chore: Add YUM repo file and upload instructions. (#2491) --- build/Linux/yum/README.md | 8 ++++++++ build/Linux/yum/newrelic-dotnet-agent.repo | 6 ++++++ 2 files changed, 14 insertions(+) create mode 100644 build/Linux/yum/README.md create mode 100644 build/Linux/yum/newrelic-dotnet-agent.repo diff --git a/build/Linux/yum/README.md b/build/Linux/yum/README.md new file mode 100644 index 0000000000..2c647bbffe --- /dev/null +++ b/build/Linux/yum/README.md @@ -0,0 +1,8 @@ +This folder contains the YUM repo definition file for the .NET agent and was manually uploaded to https://download.newrelic.com/dot_net_agent/yum. + +If changes to this file are needed, use the AWS CLI to upload to the S3 bucket: +``` +$env:AWS_ACCESS_KEY_ID="access_key_for_s3_bucket" +$env:AWS_SECRET_ACCESS_KEY="secret_access_key_for_s3_bucket" + aws s3 cp ./newrelic-dotnet-agent.repo s3:///dot_net_agent/yum + ``` \ No newline at end of file diff --git a/build/Linux/yum/newrelic-dotnet-agent.repo b/build/Linux/yum/newrelic-dotnet-agent.repo new file mode 100644 index 0000000000..7b4ff82f85 --- /dev/null +++ b/build/Linux/yum/newrelic-dotnet-agent.repo @@ -0,0 +1,6 @@ +[newrelic-dotnet-agent-repo] +name=New Relic .NET agent for Linux +baseurl=https://yum.newrelic.com/pub/newrelic/el7/$basearch +enabled=1 +gpgcheck=1 +gpgkey=https://download.newrelic.com/548C16BF.gpg \ No newline at end of file