source: scripts/usr/local/lib/7dtd/commands/start.sh@ 20

Last change on this file since 20 was 20, checked in by alloc, 10 years ago

Version 5. Fixes #9, #11

File size: 2.0 KB
Line 
1#!/bin/bash
2# Version 5
3
4# Tries to start the 7dtd instance.
5
6sdtdCommandStart() {
7 if [ "$1" = "!" ]; then
8 echo "Starting all instances:"
9 for I in $(getInstanceList); do
10 printf "%-*s: " 10 "$I"
11 sdtdCommandStart $I
12 done
13 echo "All done"
14 return
15 fi
16
17 if [ $(isValidInstance $1) -eq 0 ]; then
18 echo "No instance given or not a valid instance!"
19 return
20 fi
21
22 if [ $(isRunning $1) -eq 0 ]; then
23 if [ ! `pgrep Xvfb` ]; then
24 echo "Xvfb not yet running. Starting..."
25 su -c "/usr/bin/Xvfb :1 -screen 0 640x480x16" $SDTD_USER 2>&1 | grep -v "Could not init font path element" &
26 sleep 3
27 fi
28 export DISPLAY=localhost:1.0
29
30 setAllPlayersOffline $1
31 rm $SDTD_BASE/engine/7DaysToDie_Data/output_log.txt
32
33 for H in $(getHooksFor serverPreStart); do
34 $H $INSTANCE
35 done
36
37 SSD_PID="--pidfile $(getInstancePath $1)/7dtd.pid --make-pidfile"
38 SSD_DAEMON="--background --no-close"
39 SSD_USER="--chuid $SDTD_USER:$SDTD_GROUP --user $SDTD_USER"
40 OPTS="-quit -batchmode -nographics -configfile=$(getInstancePath $1)/config.xml -dedicated"
41
42 start-stop-daemon --start $SSD_PID $SSD_DAEMON $SSD_USER --chdir $SDTD_BASE/engine --exec $WINE -- $SDTD_BASE/engine/7DaysToDie.exe $OPTS > $(getInstancePath $1)/stdout.log 2>&1
43 sleep 1
44
45 for H in $(getHooksFor serverPostStart); do
46 $H $INSTANCE
47 done
48
49 if [ $(isRunning $1) -eq 1 ]; then
50 SSD_MONITOR_PID="--pidfile $(getInstancePath $1)/monitor.pid --make-pidfile"
51 SSD_MONITOR_DAEMON="--background"
52 start-stop-daemon --start $SSD_MONITOR_PID $SSD_MONITOR_DAEMON --exec "/usr/local/lib/7dtd/monitor-log.sh" -- "$1"
53 echo "Done!"
54 else
55 echo "Failed!"
56 rm -f $(getInstancePath $1)/7dtd.pid
57 fi
58 else
59 echo "Instance $1 is already running"
60 fi
61}
62
63sdtdCommandStartHelp() {
64 echo "Usage: $(basename $0) start <instance>"
65 echo
66 echo "Starts the given instance."
67 echo "If <instance> is \"!\" all defined instances are started."
68}
69
70sdtdCommandStartDescription() {
71 echo "Start the given instance"
72}
73
74sdtdCommandStartExpects() {
75 case $1 in
76 2)
77 echo "! $(getInstanceList)"
78 ;;
79 esac
80}
81
Note: See TracBrowser for help on using the repository browser.