Fix links to new version of daemon

This commit is contained in:
Dane Everitt 2018-08-06 07:43:12 -07:00
parent f6e58d956f
commit 88f44e0d76
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53
3 changed files with 26 additions and 2 deletions

View File

@ -118,7 +118,7 @@ set when creating the node.
The next step is to download the software and unpack the archive.
``` bash
curl -L https://github.com/pterodactyl/daemon/releases/download/v0.6.0/daemon.tar.gz | tar --strip-components=1 -xzv
curl -L https://github.com/pterodactyl/daemon/releases/download/v0.6.1/daemon.tar.gz | tar --strip-components=1 -xzv
```
Finally, we need to install the dependencies that allow the Daemon to run properly. This command will most likely

23
daemon/upgrade/0.6.md Normal file
View File

@ -0,0 +1,23 @@
# Upgrading 0.6 Series
::: tip
Your servers will not go offline during this process thanks to Docker. Clients will briefly lose connection
to the Daemon from the Panel, but only during the restart phase.
:::
## Download Newest Release
First, ensure you're in the Daemon directory, `/srv/daemon`, before continuing through this process. After you've done
that, run the command below to pull down the latest files and unpack them in the daemon directory.
``` bash
curl -L https://github.com/pterodactyl/daemon/releases/download/v0.6.1/daemon.tar.gz | tar --strip-components=1 -xzv
```
## Update Components
After you've pulled down the latest files the last thing you need to do is run the commands below to update the
components and then restart the daemon.
``` bash
npm update --only=production
systemctl restart wings
```

View File

@ -3,4 +3,5 @@
## Version Specific Guides
* [0.4.X to 0.5.X](upgrade/0.4_to_0.5.md)
* [0.5.X series](upgrade/0.5.md)
* [0.5.X to 0.6.x](upgrade/0.5_to_0.6.md) <Badge text="current" vertical="middle"/>
* [0.5.X to 0.6.S](upgrade/0.5_to_0.6.md) <Badge text="current" vertical="middle"/>
* [0.6.X series](upgrade/0.6.md) <Badge text="current" vertical="middle"/>