fix_lo.sh 478 B

123456789101112131415
  1. #!/bin/bash
  2. # LinuxGSM fix_lo.sh module
  3. # Author: Daniel Gibbs
  4. # Website: https://linuxgsm.com
  5. # Description: Resolves various issues with Last Oasis.
  6. moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
  7. appidfile=${executabledir}/steam_appid.txt
  8. if [ ! -f "${appidfile}" ]; then
  9. fn_print_information "adding ${appidfile} to ${gamename} server."
  10. echo "903950" > "${appidfile}"
  11. else
  12. fn_print_information "${appidfile} already exists. No action to be taken."
  13. fi