Browse Source

fix(arkserver): remove all appworkshop_346110.acf if multiple exist (#2852)

pull/2853/head
Daniel Gibbs 5 years ago
committed by GitHub
parent
commit
216c29d0e5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lgsm/functions/command_validate.sh
  2. 12
      lgsm/functions/fix_ark.sh

2
lgsm/functions/command_validate.sh

@ -90,3 +90,5 @@ if [ "${status}" != "0" ]; then
else
fn_validate
fi
core_exit.sh

12
lgsm/functions/fix_ark.sh

@ -4,12 +4,19 @@
# Website: https://linuxgsm.com
# Description: Resolves various issues with ARK: Survival Evolved.
# removes mulitple appworkshop_346110.acf if found.
steamappsfilewc=$(find ${HOME} -name appworkshop_346110.acf | wc -l)
if [ "${steamappsfilewc}" -gt "1" ]; then
fixname="multiple appworkshop acf files"
fn_fix_msg_start
find ${HOME} -name appworkshop_346110.acf -exec rm -f {} \;
fn_fix_msg_end
elif [ "${steamappsfilewc}" -eq "1" ]; then
# Steam mods directory selecter
# This allows LinxuGSM to select either ~/.steam or ~/Steam. depending on what is being used
steamappsfile=$(find ${HOME} -name appworkshop_346110.acf)
steamappsdir=$(dirname "${steamappsfile}")
steamappspath=$(cd ${steamappsdir};cd ../;pwd)
steamappspath=$(cd "${steamappsdir}"|| return; cd ../;pwd)
# removes the symlink if exists.
# fixes issue with older versions of LinuxGSM linking to /home/arkserver/steamcmd
@ -45,3 +52,4 @@ if [ ! -L "${serverfiles}/Engine/Binaries/ThirdParty/SteamCMD/Linux/steamapps" ]
ln -s "${steamappspath}" "${serverfiles}/Engine/Binaries/ThirdParty/SteamCMD/Linux/steamapps"
fn_fix_msg_end
fi
fi

Loading…
Cancel
Save