Last change
on this file since 16 was 16, checked in by alloc, 11 years ago |
Minor cleanups
|
-
Property svn:executable
set to
*
|
File size:
963 bytes
|
Rev | Line | |
---|
[1] | 1 | #!/bin/bash
|
---|
[14] | 2 | # Version 3
|
---|
[10] | 3 |
|
---|
[9] | 4 | . /usr/local/bin/7dtd-common.sh
|
---|
| 5 | checkRootLoadConf
|
---|
[1] | 6 |
|
---|
[16] | 7 | for I in $(getInstanceList); do
|
---|
| 8 | if [ $(isRunning $I) -eq 1 ]; then
|
---|
[9] | 9 | echo "At least one instance is still running."
|
---|
| 10 | echo "Before updating the engine please stop all instances!"
|
---|
| 11 | exit 1
|
---|
| 12 | fi
|
---|
| 13 | done
|
---|
| 14 |
|
---|
[1] | 15 | if [ ! -e $STEAMCMD_ROOT ]; then
|
---|
| 16 | mkdir $STEAMCMD_ROOT
|
---|
| 17 | cd /tmp
|
---|
| 18 | wget http://media.steampowered.com/installer/steamcmd_linux.tar.gz
|
---|
| 19 | tar -xvzf steamcmd_linux.tar.gz -C $STEAMCMD_ROOT
|
---|
| 20 | cd $STEAMCMD_ROOT
|
---|
| 21 | ./steamcmd.sh +quit
|
---|
| 22 | fi
|
---|
| 23 |
|
---|
| 24 | cd $STEAMCMD_ROOT
|
---|
| 25 |
|
---|
[9] | 26 | ./steamcmd.sh +@sSteamCmdForcePlatformType windows +login $STEAM_USER $STEAM_PASS +force_install_dir $SDTD_ROOT "+app_update 251570" validate +quit
|
---|
[1] | 27 | chown $SDTD_USER.$SDTD_GROUP -R $SDTD_ROOT
|
---|
| 28 |
|
---|
| 29 | cp $SDTD_ROOT/Install/32bit/7DaysToDie.exe $SDTD_ROOT/
|
---|
| 30 | cp $SDTD_ROOT/Install/32bit/mono.dll $SDTD_ROOT/7DaysToDie_Data/Mono/
|
---|
| 31 | cp $SDTD_ROOT/Install/32bit/SteamworksManaged.dll $SDTD_ROOT/7DaysToDie_Data/Managed/
|
---|
[9] | 32 | cp $SDTD_BASE/msvcr100.dll $SDTD_ROOT/
|
---|
Note:
See
TracBrowser
for help on using the repository browser.