_default.cfg 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. ##################################
  2. ######## Default Settings ########
  3. ##################################
  4. # DO NOT EDIT WILL BE OVERWRITTEN!
  5. # Copy settings from here and use them in either
  6. # common.cfg - applies settings to every instance
  7. # [instance].cfg - applies settings to a specific instance
  8. #### Server Settings ####
  9. ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters
  10. fn_parms(){
  11. parms="+set net_strict 1 +set fs_homepath ${serverfiles} +exec ${servercfg}"
  12. }
  13. #### LinuxGSM Settings ####
  14. ## Notification Alerts
  15. # (on|off)
  16. # Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email
  17. emailalert="off"
  18. email="email@example.com"
  19. emailfrom=""
  20. # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet
  21. pushbulletalert="off"
  22. pushbullettoken="accesstoken"
  23. channeltag=""
  24. ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup
  25. maxbackups="4"
  26. maxbackupdays="30"
  27. stoponbackup="on"
  28. ## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging
  29. consolelogging="on"
  30. logdays="7"
  31. #### LinuxGSM Advanced Settings ####
  32. ## LinuxGSM Server Details
  33. # Do not edit
  34. gamename="Wolfenstein: Enemy Territory"
  35. engine="idtech3"
  36. #### Directories ####
  37. # Edit with care
  38. ## Server Specific Directories
  39. systemdir="${serverfiles}"
  40. executabledir="${systemdir}"
  41. executable="./etded"
  42. servercfg="${servicename}.cfg"
  43. servercfgdefault="server.cfg"
  44. servercfgdir="${systemdir}/etmain"
  45. servercfgfullpath="${servercfgdir}/${servercfg}"
  46. ## Backup Directory
  47. backupdir="${rootdir}/backups"
  48. ## Logging Directories
  49. logdir="${rootdir}/log"
  50. gamelogdir="${serverfiles}/Logs"
  51. lgsmlogdir="${logdir}/script"
  52. consolelogdir="${logdir}/console"
  53. lgsmlog="${lgsmlogdir}/${servicename}-script.log"
  54. consolelog="${consolelogdir}/${servicename}-console.log"
  55. emaillog="${lgsmlogdir}/${servicename}-email.log"
  56. ## Logs Naming
  57. lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"
  58. consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log"