18 lines
567 B
Bash
18 lines
567 B
Bash
#!/bin/sh
|
|
|
|
# Clear the terminal
|
|
clear
|
|
|
|
# Credentials used to authenticate with Steam to download/update the headless server
|
|
STEAM_USERNAME=""
|
|
STEAM_PASSWORD=""
|
|
RESONITE_BETA_CODE=""
|
|
|
|
# Install / update Resonite
|
|
/usr/games/steamcmd +login ${STEAM_USERNAME} ${STEAM_PASSWORD} +@sSteamCmdForcePlatformType windows +force_install_dir /root/Resonite +app_update 2519830 -beta headless -betapassword ${RESONITE_BETA_CODE} validate +quit
|
|
|
|
# Change Directory to the Resonite Headless software
|
|
cd /root/Resonite/Headless
|
|
|
|
# Run the Resonite Headless Server
|
|
dotnet Resonite.dll |