Skip to content

Commit

Permalink
Replace deb repo with a curl and dpkg -i
Browse files Browse the repository at this point in the history
The debian repo is currently broken, and we shouldn't recommend
customers use it until it is fixed.

Contributes to #8166

(cherry picked from commit df31462)
(cherry picked from commit 35e5c5f)
  • Loading branch information
wadells committed Dec 4, 2021
1 parent efab0f3 commit aba4876
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
6 changes: 2 additions & 4 deletions docs/pages/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,8 @@ Teleport (=teleport.version=) on Linux machines.

<TabItem label="Debian/Ubuntu (DEB)">
```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
```
</TabItem>

Expand Down
10 changes: 2 additions & 8 deletions docs/pages/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,8 @@ up-to-date information.
<Tabs>
<TabItem label="Debian/Ubuntu (DEB)">
```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
```
</TabItem>

Expand Down

0 comments on commit aba4876

Please sign in to comment.