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

Last change on this file since 17 was 17, checked in by alloc, 11 years ago

Version 4

File size: 1.8 KB
Line 
1#!/bin/bash
2# Version 4
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
32 SSD_PID="--pidfile $(getInstancePath $1)/7dtd.pid --make-pidfile"
33 SSD_DAEMON="--background --no-close"
34 SSD_USER="--chuid $SDTD_USER:$SDTD_GROUP --user $SDTD_USER"
35 OPTS="-quit -batchmode -nographics -configfile=$(getInstancePath $1)/config.xml -dedicated"
36
37 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
38 sleep 1
39 if [ $(isRunning $1) -eq 1 ]; then
40 SSD_MONITOR_PID="--pidfile $(getInstancePath $1)/monitor.pid --make-pidfile"
41 SSD_MONITOR_DAEMON="--background"
42 start-stop-daemon --start $SSD_PID $SSD_DAEMON --exec "/usr/local/lib/monitor-log.sh" -- "$1"
43 echo "Done!"
44 else
45 echo "Failed!"
46 rm -f $(getInstancePath $1)/7dtd.pid
47 fi
48 else
49 echo "Instance $1 is already running"
50 fi
51}
52
53sdtdCommandStartHelp() {
54 echo "Usage: $(basename $0) start <instance>"
55 echo
56 echo "Starts the given instance."
57 echo "If <instance> is \"!\" all defined instances are started."
58}
59
60sdtdCommandStartDescription() {
61 echo "Start the given instance"
62}
63
64sdtdCommandStartExpects() {
65 case $1 in
66 2)
67 echo "! $(getInstanceList)"
68 ;;
69 esac
70}
71
Note: See TracBrowser for help on using the repository browser.