Changeset 35
- Timestamp:
- Jun 2, 2014, 2:42:48 AM (10 years ago)
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
bootstrapper/bootstrap.sh
r34 r35 12 12 INSTALLOPTIONALDEPS=0 13 13 14 DEPENDENCIES="gcc wget tr xvfb mono-runtime rsync xmlstarlet gcc"14 DEPENDENCIES="gcc wget tr rsync xmlstarlet" 15 15 16 16 if [ -n "$(command -v apt-get)" ]; then … … 27 27 28 28 if [ $IS64BIT -eq 1 ]; then 29 DEPENDENCIES="$DEPENDENCIES lib32gcc1 wine:i386" 30 else 31 DEPENDENCIES="$DEPENDENCIES wine" 29 DEPENDENCIES="$DEPENDENCIES lib32gcc1" 32 30 fi 33 31 … … 61 59 echo "the website regarding the prerequisites" 62 60 echo "(https://7dtd.illy.bz)." 61 echo 62 echo "Also make sure you have the 32 Bit version of libgcc installed!" 63 echo 63 64 echo "Do you want to continue anyway?" 64 65 select yn in "Yes" "No"; do … … 114 115 return 115 116 fi 117 118 ldconfig -p | grep gcc | grep -v 64 > /dev/null 119 if [ $? -ne 0 ]; then 120 echo "There probably is no 32 Bit version of libgcc installed." 121 echo "Do you want to continue?" 122 select yn in "Yes" "No"; do 123 case $yn in 124 Yes) 125 break;; 126 No) 127 echo "Aborting." 128 exit 0 129 ;; 130 esac 131 done 132 fi 116 133 117 134 echo 1 … … 154 171 chown root.root start-stop-daemon 155 172 chmod 0755 start-stop-daemon 173 174 echo -e "\n=============================================================\n\n" 175 } 176 177 installLinuxEngine() { 178 echo -e "Downloading and installing Linux engine\n" 179 wget -nv http://illy.bz/fi/7dtd/linux_files.tar.gz -O /tmp/linux_files.tar.gz 180 tar --touch -xzf /tmp/linux_files.gz -C /home/sdtd/ 181 182 chown sdtd.sdtd /home/sdtd/linux_files 183 chmod 0644 /home/sdtd/linux_files 184 chmod 0755 /home/sdtd/linux_files/engine/7DaysToDie.x86 156 185 157 186 echo -e "\n=============================================================\n\n" … … 229 258 setupUser 230 259 installManagementScripts 260 installLinuxEngine 231 261 setSteamLoginData 232 262 installSteamCmdAndSDTD -
scripts/etc/7dtd.conf
r32 r35 17 17 # Paths to binaries. Use "which BINARYNAME" to find the path of a single binary 18 18 export RSYNC=/usr/bin/rsync 19 export WINE=/usr/bin/wine20 19 export XMLSTARLET=/usr/bin/xmlstarlet 21 20 export PKILL=/usr/bin/pkill -
scripts/usr/local/lib/7dtd/VERSION
r34 r35 1 Current version: 92 Last edit: 2014-06-0 11 Current version: 10 2 Last edit: 2014-06-02 -
scripts/usr/local/lib/7dtd/commands/start.sh
r25 r35 20 20 21 21 if [ $(isRunning $1) -eq 0 ]; then 22 if [ ! `pgrep Xvfb` ]; then23 echo "Xvfb not yet running. Starting..."24 su -c "/usr/bin/Xvfb :1 -screen 0 640x480x16" $SDTD_USER 2>&1 | grep -v "Could not init font path element" &25 sleep 326 fi27 export DISPLAY=localhost:1.028 29 22 setAllPlayersOffline $1 30 rm $ SDTD_BASE/engine/7DaysToDie_Data/output_log.txt23 rm $(getInstancePath $1)/output_log.txt 31 24 32 25 for H in $(getHooksFor serverPreStart); do … … 37 30 SSD_DAEMON="--background --no-close" 38 31 SSD_USER="--chuid $SDTD_USER:$SDTD_GROUP --user $SDTD_USER" 39 OPTS="- quit -batchmode -nographics-configfile=$(getInstancePath $1)/config.xml -dedicated"32 OPTS="-logfile $(getInstancePath $1)/output_log.txt -configfile=$(getInstancePath $1)/config.xml -dedicated" 40 33 41 $SSD --start $SSD_PID $SSD_DAEMON $SSD_USER --chdir $SDTD_BASE/engine --exec $ WINE -- $SDTD_BASE/engine/7DaysToDie.exe$OPTS > $(getInstancePath $1)/stdout.log 2>&134 $SSD --start $SSD_PID $SSD_DAEMON $SSD_USER --chdir $SDTD_BASE/engine --exec $SDTD_BASE/engine/7DaysToDie.x86 -- $OPTS > $(getInstancePath $1)/stdout.log 2>&1 42 35 sleep 1 43 36 -
scripts/usr/local/lib/7dtd/commands/updateengine.sh
r28 r35 24 24 25 25 ./steamcmd.sh +@sSteamCmdForcePlatformType windows +login $STEAM_USER $STEAM_PASS +force_install_dir $SDTD_BASE/engine "+app_update 251570" validate +quit 26 27 cp $SDTD_BASE/linux_files/engine/* $SDTD_BASE/engine/ -R 28 cp $SDTD_BASE/engine/Install/32bit/SteamworksManaged.dll $SDTD_BASE/engine/7DaysToDie_Data/Managed/ 29 26 30 chown $SDTD_USER.$SDTD_GROUP -R $SDTD_BASE/engine 27 28 cp $SDTD_BASE/engine/Install/32bit/7DaysToDie.exe $SDTD_BASE/engine/29 cp $SDTD_BASE/engine/Install/32bit/mono.dll $SDTD_BASE/engine/7DaysToDie_Data/Mono/30 cp $SDTD_BASE/engine/Install/32bit/SteamworksManaged.dll $SDTD_BASE/engine/7DaysToDie_Data/Managed/31 31 } 32 32 -
scripts/usr/local/lib/7dtd/monitor-log.sh
r23 r35 50 50 NOBUF="stdbuf -e0 -o0" 51 51 52 $NOBUF tail -n 5000 -F $ SDTD_BASE/engine/7DaysToDie_Data/output_log.txt |52 $NOBUF tail -n 5000 -F $(getInstancePath $INSTANCE)/output_log.txt | 53 53 $NOBUF tr '\\' '/' | 54 54 $NOBUF tr -d '\r' | -
scripts/usr/local/lib/7dtd/serverconfig.sh
r24 r35 1009 1009 configCurrent_TelnetEnabled=true 1010 1010 configCurrent_AdminFileName=admins.xml 1011 configCurrent_SaveGameFolder="$( winepath -w $(getInstancePath "$1") 2>/dev/null | grep instances)"1011 configCurrent_SaveGameFolder="$(getInstancePath "$1")" 1012 1012 } 1013 1013
Note:
See TracChangeset
for help on using the changeset viewer.