msm/msm.config

25 lines
705 B
Plaintext
Raw Normal View History

2012-05-20 11:42:36 +00:00
#!/bin/bash
# User which manages all servers
SERVER_USER="minecraft"
2012-05-20 11:42:36 +00:00
# A base path to use in the rest of this config file (if you choose)
STORAGE_PATH="/opt/msm"
# Where new servers are stored
2012-05-20 12:40:46 +00:00
SERVER_STORAGE_PATH="${STORAGE_PATH}/servers"
2012-05-20 11:42:36 +00:00
# Where RAM enambled worlds are stored
2012-05-20 12:40:46 +00:00
RAMDISK_STORAGE_PATH=""
2012-05-20 11:42:36 +00:00
# Where runnable jar files for use by servers are stored
2012-05-20 12:40:46 +00:00
JAR_STORAGE_PATH="${STORAGE_PATH}/jars"
2012-05-20 11:42:36 +00:00
# Where "WorldEdit snapshot" compatible world backups are stored
WORLD_ARCHIVE_PATH="${STORAGE_PATH}/archives/worlds"
# Where archived logs are stored
LOG_ARCHIVE_PATH="${STORAGE_PATH}/archives/logs"
# Where compelte server backups are stored
BACKUP_ARCHIVE_PATH="${STORAGE_PATH}/archives/backups"