| Line | |
|---|
| 1 | #!/bin/sh
|
|---|
| 2 |
|
|---|
| 3 | # Root directory where steamcmd should be placed
|
|---|
| 4 | export STEAMCMD_ROOT=/home/sdtd/steamcmd
|
|---|
| 5 | export STEAM_USER=
|
|---|
| 6 | export STEAM_PASS=
|
|---|
| 7 |
|
|---|
| 8 | # Root directory of the engine
|
|---|
| 9 | export SDTD_ROOT=/home/sdtd/7dtd
|
|---|
| 10 |
|
|---|
| 11 | # Root of the 7dtd folders, containing e.g. the "instances" folder
|
|---|
| 12 | export SDTD_BASE=/home/sdtd
|
|---|
| 13 |
|
|---|
| 14 | # Root directory for backups
|
|---|
| 15 | export SDTD_BACKUP_ROOT=/home/sdtd/backup
|
|---|
| 16 |
|
|---|
| 17 | # User account and group to run the server
|
|---|
| 18 | export SDTD_USER=sdtd
|
|---|
| 19 | export SDTD_GROUP=sdtd
|
|---|
| 20 |
|
|---|
| 21 | # Paths to binaries. Use "which BINARYNAME" to find the path of a single binary
|
|---|
| 22 | export CP=/bin/cp
|
|---|
| 23 | export RSYNC=/usr/bin/rsync
|
|---|
| 24 | export DU=/usr/bin/du
|
|---|
| 25 | export FREE=/usr/bin/free
|
|---|
| 26 | export AWK=/usr/bin/awk
|
|---|
| 27 | export PIDOF=/bin/pidof
|
|---|
| 28 | export WINE=/usr/bin/wine
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.