Created
July 21, 2020 20:02
-
-
Save christopherpaquin/695376466bdd8e91fc5035ee01b04eeb to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
Name="${Name:-"Paquin OpenRA Server"}" | |
ListenPort="${ListenPort:-"1234"}" | |
AdvertiseOnline="${AdvertiseOnline:-"True"}" | |
Password="${Password:-"MYPASSWORD"}" | |
RequireAuthentication="${RequireAuthentication:-"True"}" | |
ProfileIDBlacklist="${ProfileIDBlacklist:-""}" | |
ProfileIDWhitelist="${ProfileIDWhitelist:-""}" | |
EnableSingleplayer="${EnableSingleplayer:-"True"}" | |
EnableSyncReports="${EnableSyncReports:-"False"}" | |
EnableGeoIP="${EnableGeoIP:-"True"}" | |
ShareAnonymizedIPs="${ShareAnonymizedIPs:-"True"}" | |
/root/OpenRA/OpenRA-Red-Alert-x86_64.AppImage --server \ | |
Server.Name="$Name" \ | |
Server.ListenPort="$ListenPort" \ | |
Server.AdvertiseOnline="$AdvertiseOnline" \ | |
Server.EnableSingleplayer="$EnableSingleplayer" \ | |
Server.Password="$Password" \ | |
Server.GeoIPDatabase="$GeoIPDatabase" \ | |
Server.ProfileIDBlacklist="$ProfileIDBlacklist" \ | |
Server.ProfileIDWhitelist="$ProfileIDWhitelist" \ | |
Server.EnableSyncReports="$EnableSyncReports" \ | |
Server.EnableGeoIP="$EnableGeoIP" \ | |
Server.ShareAnonymizedIPs="$ShareAnonymizedIPs" \ | |
Engine.SupportDir="/root/.openra" & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment