Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace deb repo with a curl and dpkg -i #9227

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -31,10 +31,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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
$ curl -O https://get.gravitational.com/teleport-(=teleport.version=)_amd64.deb
$ 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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
$ curl -O https://get.gravitational.com/teleport-(=teleport.version=)_amd64.deb
$ 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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
$ curl -O https://get.gravitational.com/teleport-(=teleport.version=)_amd64.deb
$ curl -O https://get.gravitational.com/teleport_(=teleport.version=)_amd64.deb

$ sudo dpkg -i teleport_(=teleport.version=)_amd64.deb
```
</TabItem>

Expand Down