Rev | Line | |
---|
[1] | 1 | #!/bin/sh
|
---|
| 2 |
|
---|
[28] | 3 | # User login info for Steam to download/update the engine
|
---|
[1] | 4 | export STEAM_USER=
|
---|
| 5 | export STEAM_PASS=
|
---|
| 6 |
|
---|
[17] | 7 | # Root of the 7dtd folders, containing e.g. the "engine", "instances" folders
|
---|
[9] | 8 | export SDTD_BASE=/home/sdtd
|
---|
| 9 |
|
---|
[170] | 10 | # How many seconds should stopping wait for the instance to shutdown
|
---|
| 11 | export STOP_WAIT=5
|
---|
| 12 |
|
---|
[52] | 13 | # Backup options
|
---|
[1] | 14 | export SDTD_BACKUP_ROOT=/home/sdtd/backup
|
---|
[67] | 15 | export SDTD_BACKUP_SAVEWORLD=true
|
---|
[52] | 16 | export SDTD_BACKUP_MIN_BACKUPS_KEEP=
|
---|
| 17 | export SDTD_BACKUP_MAX_BACKUPS=
|
---|
| 18 | export SDTD_BACKUP_MAX_STORAGE=
|
---|
| 19 | export SDTD_BACKUP_MAX_AGE=
|
---|
| 20 | export SDTD_BACKUP_COMPRESS=none
|
---|
[1] | 21 |
|
---|
| 22 | # User account and group to run the server
|
---|
| 23 | export SDTD_USER=sdtd
|
---|
| 24 | export SDTD_GROUP=sdtd
|
---|
| 25 |
|
---|
| 26 | # Paths to binaries. Use "which BINARYNAME" to find the path of a single binary
|
---|
| 27 | export RSYNC=/usr/bin/rsync
|
---|
[17] | 28 | export XMLSTARLET=/usr/bin/xmlstarlet
|
---|
[18] | 29 | export PKILL=/usr/bin/pkill
|
---|
[32] | 30 | export SSD=/usr/local/lib/7dtd/start-stop-daemon/start-stop-daemon
|
---|
[18] | 31 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.