diff --git a/wings/installing.md b/wings/installing.md index 5e4351be..56fdc21c 100644 --- a/wings/installing.md +++ b/wings/installing.md @@ -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 diff --git a/wings/upgrading.md b/wings/upgrading.md new file mode 100644 index 00000000..7dbbf903 --- /dev/null +++ b/wings/upgrading.md @@ -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 +```