Skip to content

Commit

Permalink
Publish upgrade guide for wings
Browse files Browse the repository at this point in the history
  • Loading branch information
DaneEveritt committed Jan 19, 2020
1 parent afefa00 commit 2682c58
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wings/installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
18 changes: 18 additions & 0 deletions wings/upgrading.md
Original file line number Diff line number Diff line change
@@ -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
```

0 comments on commit 2682c58

Please sign in to comment.