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 aba4876)
  • Loading branch information
wadells committed Dec 4, 2021
1 parent abe51c9 commit b0b2382
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
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
6 changes: 2 additions & 4 deletions docs/pages/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,8 @@ Take a look at the [Teleport Installation](installation.mdx) page to pick the mo

<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

0 comments on commit b0b2382

Please sign in to comment.