summaryrefslogtreecommitdiff
path: root/apps/startup-scripts/conf.sh.dist
blob: 3a2c3957820fbe04e50cb0a6cc9c79ed574dafa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# enable/disable GDB execution
export GDB_ENABLED=0

# [optional] gdb file
# default: gdb.conf
export GDB=""

# directory where binary are stored
export BINPATH=""

# Put here the pid you configured on your worldserver.conf file
# needed when GDB_ENABLED=1
export SERVERPID=""
 
# path to configuration file (including the file name)
# ex: /home/user/azerothcore/etc/worldserver.conf
export CONFIG=""

# path of log files
# needed by restarter to store its logs
export LOGS_PATH="";

# exec name
# ex: worldserver
export SERVERBIN=""

# prefix name for log files
# to avoid collision with other restarters
export LOG_PREFIX_NAME=""

# [optional] name of screen service
# if no specified, screen util won't be used
export SCREEN_NAME=""

# [optional] overwrite default screen options: -A -m -d -S
# WARNING: if you are running it under a systemd service
# please do not remove -m -d arguments from screen if are you using it,
# or keep WITH_CONSOLE=0 .  
# otherwise the journald-logging system will take 100% of CPU slowing 
# down the whole machine. It's because a systemd service should have 
# low console output.
export SCREEN_OPTIONS=""

# enable/disable it to show the output
# within console, if disable the output will be redirect to
# logging files
#
export WITH_CONSOLE=0