Fix broken links to binaries in docs (#1277)

* Update 8-Updating-Fleet.md

* Update 8-Updating-Fleet.md

* Update 3-Example-deployment-scenarios.md
This commit is contained in:
Mike McNeil 2021-07-03 11:36:27 -05:00 committed by GitHub
parent 05ba38ce2f
commit 77f5b60b52
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 23 deletions

View file

@ -18,29 +18,11 @@ As with any enterprise software update, it's a good idea to back up your MySQL d
## Updating the Fleet binary
Follow the binary update instructions corresponding to the original installation method used to install Fleet.
To update to a new version of Fleet, follow the [same binary install instructions](https://github.com/fleetdm/fleet/blob/main/docs/2-Deploying/1-Installation.md) from the original installation method you used to install Fleet.
### Raw binaries
Download the latest raw Fleet binaries:
```
curl -O https://github.com/fleetdm/fleet/releases/latest/download/fleet.zip
```
Unzip the binaries for your platform:
```
# For a Darwin compatible binary
unzip fleet.zip 'darwin/*' -d fleet
./fleet/darwin/fleet --help
# For a Linux compatible binary
unzip fleet.zip 'linux/*' -d fleet
./fleet/linux/fleet --help
```
Replace the existing Fleet binary with the newly unzipped binary.
Download, unzip, and replace the existing Fleet binary with the newly unzipped binary.
### Docker container

View file

@ -48,10 +48,10 @@ vagrant ssh
### Installing Fleet
To install Fleet, run the following:
To [install Fleet](https://github.com/fleetdm/fleet/blob/main/docs/2-Deploying/1-Installation.md), download, unzip, and move the latest Fleet binary to your desired install location.
```
wget https://github.com/fleetdm/fleet/releases/latest/download/fleet.zip
For example, after downloading:
```sh
unzip fleet.zip 'linux/*' -d fleet
sudo cp fleet/linux/fleet* /usr/bin/
```