From 1f9f0bd2af82209c55a3dc8ef144f12b99ac10a4 Mon Sep 17 00:00:00 2001 From: Janos <86970079+janosdebugs@users.noreply.github.com> Date: Thu, 7 Dec 2023 07:54:07 +0100 Subject: [PATCH] Updated installation instructions to packages.opentofu.org (#978) Signed-off-by: Janos Bonic <86970079+janosdebugs@users.noreply.github.com> --- website/docs/intro/install/deb-convenience.sh | 2 +- website/docs/intro/install/deb-step2.sh | 2 +- website/docs/intro/install/deb-step3.sh | 4 ++-- website/docs/intro/install/repo-yum.sh | 8 ++++---- website/docs/intro/install/rpm-convenience-yum.sh | 2 +- website/docs/intro/install/rpm-convenience-zypper.sh | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/website/docs/intro/install/deb-convenience.sh b/website/docs/intro/install/deb-convenience.sh index 7448673d15..1f33717b7b 100644 --- a/website/docs/intro/install/deb-convenience.sh +++ b/website/docs/intro/install/deb-convenience.sh @@ -1,4 +1,4 @@ -curl --proto '=https' --tlsv1.2 -fsSL 'https://packagecloud.io/install/repositories/opentofu/tofu/script.deb.sh?any=true' -o /tmp/tofu-repository-setup.sh +curl --proto '=https' --tlsv1.2 -fsSL 'https://packages.opentofu.org/install/repositories/opentofu/tofu/script.deb.sh?any=true' -o /tmp/tofu-repository-setup.sh # Inspect the downloaded script at /tmp/tofu-repository-setup.sh before running sudo bash /tmp/tofu-repository-setup.sh rm /tmp/tofu-repository-setup.sh diff --git a/website/docs/intro/install/deb-step2.sh b/website/docs/intro/install/deb-step2.sh index ba8d03576c..5fb260a87f 100644 --- a/website/docs/intro/install/deb-step2.sh +++ b/website/docs/intro/install/deb-step2.sh @@ -1,3 +1,3 @@ sudo install -m 0755 -d /etc/apt/keyrings -curl -fsSL https://packagecloud.io/opentofu/tofu/gpgkey | sudo gpg --no-tty --batch --dearmor -o /etc/apt/keyrings/opentofu.gpg +curl -fsSL https://packages.opentofu.org/opentofu/tofu/gpgkey | sudo gpg --no-tty --batch --dearmor -o /etc/apt/keyrings/opentofu.gpg sudo chmod a+r /etc/apt/keyrings/opentofu.gpg \ No newline at end of file diff --git a/website/docs/intro/install/deb-step3.sh b/website/docs/intro/install/deb-step3.sh index 39f2f43574..1873ac76cf 100644 --- a/website/docs/intro/install/deb-step3.sh +++ b/website/docs/intro/install/deb-step3.sh @@ -1,4 +1,4 @@ echo \ - "deb [signed-by=/etc/apt/keyrings/opentofu.gpg] https://packagecloud.io/opentofu/tofu/any/ any main -deb-src [signed-by=/etc/apt/keyrings/opentofu.gpg] https://packagecloud.io/opentofu/tofu/any/ any main" | \ + "deb [signed-by=/etc/apt/keyrings/opentofu.gpg] https://packages.opentofu.org/opentofu/tofu/any/ any main +deb-src [signed-by=/etc/apt/keyrings/opentofu.gpg] https://packages.opentofu.org/opentofu/tofu/any/ any main" | \ sudo tee /etc/apt/sources.list.d/opentofu.list > /dev/null diff --git a/website/docs/intro/install/repo-yum.sh b/website/docs/intro/install/repo-yum.sh index 62b2cd8f37..d86dda0fd7 100644 --- a/website/docs/intro/install/repo-yum.sh +++ b/website/docs/intro/install/repo-yum.sh @@ -1,22 +1,22 @@ cat >/etc/yum.repos.d/opentofu.repo <