source: scripts/etc/7dtd.conf@ 495

Last change on this file since 495 was 478, checked in by alloc, 12 months ago

Scripts updates

File size: 1.4 KB
RevLine 
[1]1#!/bin/sh
2
[258]3# Copyright 2016 Christian 'Alloc' Illy
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17
[17]18# Root of the 7dtd folders, containing e.g. the "engine", "instances" folders
[9]19export SDTD_BASE=/home/sdtd
20
[170]21# How many seconds should stopping wait for the instance to shutdown
22export STOP_WAIT=5
23
[52]24# Backup options
[1]25export SDTD_BACKUP_ROOT=/home/sdtd/backup
[67]26export SDTD_BACKUP_SAVEWORLD=true
[52]27export SDTD_BACKUP_MIN_BACKUPS_KEEP=
28export SDTD_BACKUP_MAX_BACKUPS=
29export SDTD_BACKUP_MAX_STORAGE=
30export SDTD_BACKUP_MAX_AGE=
31export SDTD_BACKUP_COMPRESS=none
[1]32
33# User account and group to run the server
34export SDTD_USER=sdtd
35export SDTD_GROUP=sdtd
36
37# Paths to binaries. Use "which BINARYNAME" to find the path of a single binary
38export RSYNC=/usr/bin/rsync
[17]39export XMLSTARLET=/usr/bin/xmlstarlet
[18]40export PKILL=/usr/bin/pkill
[32]41export SSD=/usr/local/lib/7dtd/start-stop-daemon/start-stop-daemon
[478]42export EDITOR=/usr/bin/editor
Note: See TracBrowser for help on using the repository browser.