From 26e45981a3ddf7f10e263e7521dfdcf3cc51ab98 Mon Sep 17 00:00:00 2001 From: John Edwards Date: Sun, 8 Oct 2023 18:03:57 +0100 Subject: [PATCH] symlink steamclient.so to correct location --- bullseye/etc/entry.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bullseye/etc/entry.sh b/bullseye/etc/entry.sh index 3cf8d0d..b17dc8e 100644 --- a/bullseye/etc/entry.sh +++ b/bullseye/etc/entry.sh @@ -8,6 +8,10 @@ bash "${STEAMCMDDIR}/steamcmd.sh" +force_install_dir "${STEAMAPPDIR}" \ +app_update "${STEAMAPPID}" \ +quit +# steamclient.so fix +mkdir -p ~/.steam/sdk64 +ln -sfT ${STEAMCMDDIR}/linux64/steamclient.so ~/.steam/sdk64/steamclient.so + # Install server.cfg cp /etc/server.cfg "${STEAMAPPDIR}"/game/csgo/cfg/server.cfg sed -i -e "s/{{SERVER_HOSTNAME}}/${CS2_SERVERNAME}/g" "${STEAMAPPDIR}"/game/csgo/cfg/server.cfg \