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

[v17] docs: update macos uninstall #49784

Merged
merged 3 commits into from
Dec 5, 2024
Merged
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
11 changes: 9 additions & 2 deletions docs/pages/admin-guides/management/admin/uninstall-teleport.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ Follow the instructions for your Linux distribution:
You can use `dirname $(which teleport)` to look this up automatically.
</Admonition>

Remove the Teleport binaries from the machine:
Remove the Teleport binaries and links to Teleport software from the machine:

```code
$ sudo rm -f /usr/local/bin/tbot
Expand All @@ -171,10 +171,17 @@ Follow the instructions for your Linux distribution:
```

<Admonition type="notice" title="Uninstall macOS client tools">
If you installed the macOS `tsh` client-only package and/or Teleport Connect for macOS, you can optionally remove those too:

You may have Teleport software in the `/Applications` folder if you:
- Installed from a macOS tarball for v17+ that includes `tsh.app` and `tctl.app`
- Installed the macOS `tsh` client-only package for v16 or older versions.
- Installed Teleport Connect for macOS

You can remove those with these commands:

```code
$ sudo rm -rf /Applications/tsh.app
$ sudo rm -rf /Applications/tctl.app
$ sudo rm -rf /Applications/Teleport\ Connect.app
```
</Admonition>
Expand Down
Loading