diff --git a/docs/1-Using-Fleet/8-Updating-Fleet.md b/docs/1-Using-Fleet/8-Updating-Fleet.md index 7a7d5dec3d..ec05907387 100644 --- a/docs/1-Using-Fleet/8-Updating-Fleet.md +++ b/docs/1-Using-Fleet/8-Updating-Fleet.md @@ -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 diff --git a/docs/2-Deploying/3-Example-deployment-scenarios.md b/docs/2-Deploying/3-Example-deployment-scenarios.md index c8cec29f1f..7e7825042a 100644 --- a/docs/2-Deploying/3-Example-deployment-scenarios.md +++ b/docs/2-Deploying/3-Example-deployment-scenarios.md @@ -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/ ```