Created
April 26, 2022 16:15
-
-
Save cetteup/c347d754314574903fa43fec89475458 to your computer and use it in GitHub Desktop.
Paraworld dedicated server systemd service templates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=ParaWorld dedicated server "manager" | |
After=network-online.target | |
[Install] | |
WantedBy=multi-user.target | |
[Service] | |
Type=simple | |
WorkingDirectory=/home/[username]/paraworld | |
ExecStart=/usr/bin/wine /home/[username]/paraworld/bin/Paraworld.exe -dedicated | |
Restart=always | |
RestartSec=15 | |
StandardOutput=syslog | |
StandardError=syslog | |
SyslogIdentifier=%n | |
User=[username] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=ParaWorld dedicated server with OpenSpy support | |
After=network-online.target | |
[Install] | |
WantedBy=multi-user.target | |
[Service] | |
Type=simple | |
WorkingDirectory=/home/[username]/paraworld | |
ExecStart=/usr/bin/wine /home/[username]/paraworld/bin/PWServerd.exe 0.0.0.0:1177 -dedicated -internet -gamespy | |
Restart=always | |
RestartSec=10 | |
StandardOutput=syslog | |
StandardError=syslog | |
SyslogIdentifier=%n | |
User=[username] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment