From 4c255071cef6d0353753c30eed158726a6e228cc 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 aba4876763857d147756113cb23e793c6340fa43) --- 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 bbdda2ab0e82b..5f10562d205c0 100644 --- a/docs/pages/getting-started.mdx +++ b/docs/pages/getting-started.mdx @@ -39,10 +39,8 @@ Teleport 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 6ae4932a95822..a3775f7ff8f19 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 ```