Skip to content

Instantly share code, notes, and snippets.

@cetteup
Created April 26, 2022 16:15
Show Gist options
  • Save cetteup/c347d754314574903fa43fec89475458 to your computer and use it in GitHub Desktop.
Save cetteup/c347d754314574903fa43fec89475458 to your computer and use it in GitHub Desktop.
Paraworld dedicated server systemd service templates
[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]
[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