From aba4876763857d147756113cb23e793c6340fa43 Mon Sep 17 00:00:00 2001 From: Walt Della Date: Fri, 3 Dec 2021 19:14:00 -0700 Subject: [PATCH] Replace deb repo with a curl and dpkg -i The debian repo is currently broken, and we shouldn't recommend customers use it until it is fixed. Contributes to https://github.com/gravitational/teleport/issues/8166 (cherry picked from commit df3146258a6a4102a0c35d03a776fa62df0ecf1b) (cherry picked from commit 35e5c5f671976d25a873a97ce74463e03c3497f0) --- docs/pages/getting-started.mdx | 6 ++---- docs/pages/installation.mdx | 10 ++-------- 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/docs/pages/getting-started.mdx b/docs/pages/getting-started.mdx index 15f76365e2a44..7cf92c13a9a73 100644 --- a/docs/pages/getting-started.mdx +++ b/docs/pages/getting-started.mdx @@ -41,10 +41,8 @@ Teleport (=teleport.version=) on Linux machines. ```bash - curl https://deb.releases.teleport.dev/teleport-pubkey.asc | sudo apt-key add - - sudo add-apt-repository 'deb https://deb.releases.teleport.dev/ stable main' - sudo apt-get update - sudo apt-get install teleport + curl -O https://get.gravitational.com/teleport-(=teleport.version=)_amd64.deb + sudo dpkg -i teleport_(=teleport.version=)_amd64.deb ``` diff --git a/docs/pages/installation.mdx b/docs/pages/installation.mdx index 72a16d2527342..ba896e1b30bd5 100644 --- a/docs/pages/installation.mdx +++ b/docs/pages/installation.mdx @@ -16,14 +16,8 @@ up-to-date information. ```bash - # Install our public key. - $ curl https://deb.releases.teleport.dev/teleport-pubkey.asc | sudo apt-key add - - # Add repo to APT - $ add-apt-repository 'deb https://deb.releases.teleport.dev/ stable main' - # Update APT Cache - $ apt-get update - # Install Teleport - $ apt install teleport + $ curl -O https://get.gravitational.com/teleport-(=teleport.version=)_amd64.deb + $ sudo dpkg -i teleport_(=teleport.version=)_amd64.deb ```