Publish upgrade guide for wings

This commit is contained in:
Dane Everitt 2020-01-19 15:41:07 -08:00
parent afefa0061a
commit 2682c58c92
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53
2 changed files with 20 additions and 2 deletions

View File

@ -116,7 +116,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/wings/releases/download/v1.0.0-alpha.2/wings
curl -L -o wings https://github.com/pterodactyl/wings/releases/download/v1.0.0-alpha.2/wings
```
## Configure Daemon
Once you have installed the daemon and required components, the next step is to create a node on your installed Panel
@ -152,7 +152,7 @@ User=root
WorkingDirectory=/srv/wings
LimitNOFILE=4096
PIDFile=/var/run/wings/daemon.pid
ExecStart=./wings
ExecStart=/srv/wings/wings
Restart=on-failure
StartLimitInterval=600

18
wings/upgrading.md Normal file
View File

@ -0,0 +1,18 @@
# Upgrading Wings
Upgrading Wings is a painless process and should take less than a minute to complete.
## Download Updated Binary
First, download the updated wings binary into `/srv/wings`.
``` bash
curl -L -o wings https://github.com/pterodactyl/wings/releases/download/v1.0.0-alpha.2/wings
chmod u+x wings
```
## Restart Process
Finally, restart the wings process. Your running servers will not be affected and any open
connections to the instance will re-connect automatically.
``` bash
systemctl restart wings
```