Last change
on this file since 257 was 257, checked in by alloc, 9 years ago |
Scripts: Removed Steam login
|
File size:
794 bytes
|
Rev | Line | |
---|
[1] | 1 | #!/bin/sh
|
---|
| 2 |
|
---|
[17] | 3 | # Root of the 7dtd folders, containing e.g. the "engine", "instances" folders
|
---|
[9] | 4 | export SDTD_BASE=/home/sdtd
|
---|
| 5 |
|
---|
[170] | 6 | # How many seconds should stopping wait for the instance to shutdown
|
---|
| 7 | export STOP_WAIT=5
|
---|
| 8 |
|
---|
[52] | 9 | # Backup options
|
---|
[1] | 10 | export SDTD_BACKUP_ROOT=/home/sdtd/backup
|
---|
[67] | 11 | export SDTD_BACKUP_SAVEWORLD=true
|
---|
[52] | 12 | export SDTD_BACKUP_MIN_BACKUPS_KEEP=
|
---|
| 13 | export SDTD_BACKUP_MAX_BACKUPS=
|
---|
| 14 | export SDTD_BACKUP_MAX_STORAGE=
|
---|
| 15 | export SDTD_BACKUP_MAX_AGE=
|
---|
| 16 | export SDTD_BACKUP_COMPRESS=none
|
---|
[1] | 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 RSYNC=/usr/bin/rsync
|
---|
[17] | 24 | export XMLSTARLET=/usr/bin/xmlstarlet
|
---|
[18] | 25 | export PKILL=/usr/bin/pkill
|
---|
[32] | 26 | export SSD=/usr/local/lib/7dtd/start-stop-daemon/start-stop-daemon
|
---|
[18] | 27 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.