mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-18 11:25:42 +00:00
32 lines
469 B
Bash
32 lines
469 B
Bash
#!/bin/bash
|
|
|
|
######################
|
|
|
|
# enable/disable GDB execution
|
|
export GDB_ENABLED=0
|
|
|
|
# gdb file
|
|
export GDB=""
|
|
|
|
# directory where binary are stored
|
|
exoirt BINPATH=""
|
|
|
|
### Put here the pid you configured on your worldserver.conf file ###
|
|
export SERVERPID=""
|
|
|
|
# path to conf file
|
|
export CONFIG=""
|
|
|
|
# path of log files
|
|
export LOGS_PATH="";
|
|
|
|
# exec name
|
|
export SERVERBIN=""
|
|
|
|
# name of screen service ( for restarter )
|
|
export SCREEN_NAME=""
|
|
|
|
######################
|
|
|
|
|