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)
  • Loading branch information
wadells committed Dec 4, 2021
1 parent 0056564 commit 428677e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 16 deletions.
6 changes: 2 additions & 4 deletions docs/pages/getting-started/linux-server.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,8 @@ Teleport (=teleport.version=) on Linux machines.

<TabItem label="Debian/Ubuntu (DEB)">
```code
$ 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 @@ -18,14 +18,8 @@ up-to-date information.
<Tabs>
<TabItem label="Debian/Ubuntu (DEB)">
```code
# 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/server-access/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,8 @@ This guide introduces some of these common scenarios and how to interact with Te

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

Please sign in to comment.