Last change
on this file since 14 was 14, checked in by alloc, 11 years ago |
More instance validation, switch to XMLStarlet, config.xml instead of serverconfig.xml, admins.xml instead of serveradmin.xml
|
-
Property svn:executable
set to
*
|
File size:
1.2 KB
|
Line | |
---|
1 | #!/bin/bash
|
---|
2 | # Version 3
|
---|
3 |
|
---|
4 | # Tries to start the 7dtd instance given as first parameter.
|
---|
5 | # Returns:
|
---|
6 | # 0 : Done
|
---|
7 | # 1 : Was already running
|
---|
8 | # 2 : No instance name given
|
---|
9 | # 3 : No such instance
|
---|
10 | # 5 : Unknown error when starting engine
|
---|
11 |
|
---|
12 | . /usr/local/bin/7dtd-common.sh
|
---|
13 | checkRootLoadConf
|
---|
14 |
|
---|
15 | checkInstanceValid $1
|
---|
16 |
|
---|
17 | res=$(isRunning $1)
|
---|
18 | if [ $res -eq 0 ]; then
|
---|
19 | if [ ! `pgrep Xvfb` ]; then
|
---|
20 | echo "Xvfb not yet running. Starting..."
|
---|
21 | su -c "/usr/bin/Xvfb :1 -screen 0 640x480x16" $SDTD_USER 2>&1 | grep -v "Could not init font path element" &
|
---|
22 | sleep 3
|
---|
23 | fi
|
---|
24 | export DISPLAY=localhost:1.0
|
---|
25 |
|
---|
26 | SSD_PID="--pidfile $(getInstancePath $1)/7dtd.pid --make-pidfile"
|
---|
27 | SSD_DAEMON="--background --no-close"
|
---|
28 | SSD_USER="--chuid $SDTD_USER:$SDTD_GROUP --user $SDTD_USER"
|
---|
29 | OPTS="-quit -batchmode -nographics -configfile=$(getInstancePath $1)/config.xml -dedicated"
|
---|
30 |
|
---|
31 | start-stop-daemon --start $SSD_PID $SSD_DAEMON $SSD_USER --chdir $SDTD_ROOT --exec $WINE -- $SDTD_ROOT/7DaysToDie.exe $OPTS > $(getInstancePath $1)/stdout.log 2>&1
|
---|
32 | sleep 1
|
---|
33 | res=$(isRunning $1)
|
---|
34 | if [ $res -eq 1 ]; then
|
---|
35 | echo "Done!"
|
---|
36 | exit 0
|
---|
37 | else
|
---|
38 | echo "Failed!"
|
---|
39 | rm -f $(getInstancePath $1)/7dtd.pid
|
---|
40 | exit 5
|
---|
41 | fi
|
---|
42 | else
|
---|
43 | echo "7dtd instance $1 is already running"
|
---|
44 | exit 1
|
---|
45 | fi
|
---|
Note:
See
TracBrowser
for help on using the repository browser.