-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.example
44 lines (35 loc) · 1.39 KB
/
config.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/bash
#
# Settings file for cuwo-init
# ==================================
#
# Make a copy of this file named config
# and edit the variables to your needs.
#
# Name to use for the screen instance
SCREEN="cuwo"
# User that should run the server
USERNAME="cuwo"
# Path to cuwo server directory
# To get cuwo, see https://github.com/matpow2/cuwo
CUWOPATH="/home/${USERNAME}/cuwo"
# Settings for backups
# ==================================
# Location for world backups
BACKUPPATH="/home/${USERNAME}/cuwobackup/worlds"
# Where the whole minecraft directory is copied when whole-backup is executed
# whole-backup is a complete uncompressed backup of the whole server folder.
WHOLEBACKUP="/home/${USERNAME}/cuwobackup/server"
# Format for world backup (tar or zip).
BACKUPFORMAT="tar"
# Normally backups will be put in a subfolder to $BACKUPPATH with todays date
# and the backups themselves will have a timestamp.
# Compress the whole backup with bzip2?
# Note that this may not save a lot of disk space since there can be a lot of files
# in your server directory, that are already compressed, but it can slow down the
# backup a bit. This highly depends on the plugins you're using.
#
# For example: The png files generated by Dynmap are already compressed and still use
# a lot of space in your server directory, so the compression ratio of the compressed
# backup will not be very high.
COMPRESS_WHOLEBACKUP=YES