| [17] | 1 | #!/bin/bash | 
|---|
|  | 2 | # Version 4 | 
|---|
|  | 3 |  | 
|---|
|  | 4 | # Tries to start the 7dtd instance. | 
|---|
|  | 5 |  | 
|---|
|  | 6 | sdtdCommandStart() { | 
|---|
|  | 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 |  | 
|---|
|  | 53 | sdtdCommandStartHelp() { | 
|---|
|  | 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 |  | 
|---|
|  | 60 | sdtdCommandStartDescription() { | 
|---|
|  | 61 | echo "Start the given instance" | 
|---|
|  | 62 | } | 
|---|
|  | 63 |  | 
|---|
|  | 64 | sdtdCommandStartExpects() { | 
|---|
|  | 65 | case $1 in | 
|---|
|  | 66 | 2) | 
|---|
|  | 67 | echo "! $(getInstanceList)" | 
|---|
|  | 68 | ;; | 
|---|
|  | 69 | esac | 
|---|
|  | 70 | } | 
|---|
|  | 71 |  | 
|---|