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

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

v25: Fixes #22, #23. Also adds new serverconfig options

File size: 2.1 KB
RevLine 
[17]1#!/bin/bash
2
3# Tries to start the 7dtd instance.
4
5sdtdCommandStart() {
6 if [ "$1" = "!" ]; then
7 echo "Starting all instances:"
8 for I in $(getInstanceList); do
9 printf "%-*s: " 10 "$I"
10 sdtdCommandStart $I
11 done
12 echo "All done"
13 return
14 fi
15
16 if [ $(isValidInstance $1) -eq 0 ]; then
17 echo "No instance given or not a valid instance!"
18 return
19 fi
20
21 if [ $(isRunning $1) -eq 0 ]; then
[66]22 # Kill monitor if it is still running
23 if [ -f "$(getInstancePath $1)/monitor.pid" ]; then
24 $PKILL -TERM -P $(cat $(getInstancePath $1)/monitor.pid)
25 rm $(getInstancePath $1)/monitor.pid
26 fi
27
[67]28 if [ ! -d "$(getInstancePath $1)/logs" ]; then
29 mkdir "$(getInstancePath $1)/logs"
30 fi
31 rm -f $(getInstancePath $1)/logs/output_log.txt
[17]32
[20]33 for H in $(getHooksFor serverPreStart); do
34 $H $INSTANCE
35 done
36
[17]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"
[67]40 OPTS="-logfile $(getInstancePath $1)/logs/output_log.txt -configfile=$(getInstancePath $1)/config.xml -dedicated"
[17]41
[67]42 LD_LIBRARY_PATH=$SDTD_BASE/linux_files $SSD --start $SSD_PID $SSD_DAEMON $SSD_USER --chdir $SDTD_BASE/engine --exec $SDTD_BASE/engine/7DaysToDie.x86 -- $OPTS > $(getInstancePath $1)/logs/stdout.log 2>&1
[17]43 sleep 1
[20]44
45 for H in $(getHooksFor serverPostStart); do
46 $H $INSTANCE
47 done
48
[17]49 if [ $(isRunning $1) -eq 1 ]; then
50 SSD_MONITOR_PID="--pidfile $(getInstancePath $1)/monitor.pid --make-pidfile"
51 SSD_MONITOR_DAEMON="--background"
[25]52 $SSD --start $SSD_MONITOR_PID $SSD_MONITOR_DAEMON --exec "/usr/local/lib/7dtd/monitor-log.sh" -- "$1"
[17]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.