From 23d200fbb13e359054369d31fed10f108453d1fe Mon Sep 17 00:00:00 2001 From: Damian Peckett Date: Fri, 6 Sep 2024 09:21:44 +0200 Subject: [PATCH] chore: update telemetry url --- README.md | 11 +++-------- internal/constants/constants.go | 3 +-- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 680f5c3..428fd14 100644 --- a/README.md +++ b/README.md @@ -6,17 +6,12 @@ A little tool that will construct an OCI image archive from a set of Kubernetes ### From APT -Add my apt repository to your system: - -*Currently packages are only published for Debian 12 (Bookworm).* - -```shell -curl -fsL https://apt.dpeckett.dev/signing_key.asc | sudo tee /etc/apt/keyrings/apt-dpeckett-dev-keyring.asc > /dev/null -echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/apt-dpeckett-dev-keyring.asc] http://apt.dpeckett.dev $(. /etc/os-release && echo $VERSION_CODENAME) stable" | sudo tee /etc/apt/sources.list.d/apt-dpeckett-dev.list > /dev/null -``` +Add my [apt repository](https://github.com/dpeckett/apt.dpeckett.dev?tab=readme-ov-file#usage) to your system. Then install airgapify: +*Currently packages are only published for Debian 12 (Bookworm).* + ```shell sudo apt update sudo apt install airgapify diff --git a/internal/constants/constants.go b/internal/constants/constants.go index f92b385..9b23d13 100644 --- a/internal/constants/constants.go +++ b/internal/constants/constants.go @@ -19,7 +19,6 @@ package constants var ( - // TelemetryURL is the URL to send anonymized telemetry data to. - TelemetryURL = "https://telemetry.pecke.tt" + TelemetryURL = "https://telemetry.dpeckett.dev" Version = "dev" )