From 42442ca9685fc9329976d53f8bcf2bd63aed1995 Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Sat, 26 Sep 2026 21:01:56 +0200 Subject: [PATCH] Let steamcmd update itself before installing Satisfactory (#17526) On the run in which steamcmd replaces itself, the app_update that follows fails with 'Missing configuration', and the same command succeeds once it runs again. A login-only run first takes that self-update out of the install and update. --- ct/satisfactory.sh | 1 + install/satisfactory-install.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/ct/satisfactory.sh b/ct/satisfactory.sh index 9fa71e3c6..e68df53f2 100644 --- a/ct/satisfactory.sh +++ b/ct/satisfactory.sh @@ -39,6 +39,7 @@ function update_script() { create_backup /home/steam/.config/Epic/FactoryGame/Saved msg_info "Updating Satisfactory" + $STD runuser -u steam -- /opt/steamcmd/steamcmd.sh +login anonymous +quit || true if $STD runuser -u steam -- /opt/steamcmd/steamcmd.sh \ +force_install_dir /opt/satisfactory/server \ +login anonymous \ diff --git a/install/satisfactory-install.sh b/install/satisfactory-install.sh index 8c4934fa0..751a13e15 100644 --- a/install/satisfactory-install.sh +++ b/install/satisfactory-install.sh @@ -35,6 +35,7 @@ fetch_and_deploy_from_url \ chown -R steam:steam /opt/steamcmd msg_info "Installing Satisfactory Dedicated Server" +$STD runuser -u steam -- /opt/steamcmd/steamcmd.sh +login anonymous +quit || true $STD runuser -u steam -- /opt/steamcmd/steamcmd.sh \ +force_install_dir /opt/satisfactory/server \ +login anonymous \