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