2017-11-01 05:42:44 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# FUNCTIONS
|
|
|
|
function setServerProp {
|
|
|
|
local prop=$1
|
|
|
|
local var=$2
|
|
|
|
if [ -n "$var" ]; then
|
2018-04-14 18:01:34 +00:00
|
|
|
# normalize booleans
|
|
|
|
case ${var^^} in
|
|
|
|
TRUE|FALSE)
|
|
|
|
var=${var,,} ;;
|
|
|
|
esac
|
2018-01-28 13:45:25 +00:00
|
|
|
echo "Setting ${prop} to '${var}' in ${SERVER_PROPERTIES}"
|
2019-06-08 21:47:28 +00:00
|
|
|
sed -i "/^${prop}\s*=/ c ${prop}=${var}" "$SERVER_PROPERTIES"
|
2018-01-28 12:16:45 +00:00
|
|
|
else
|
|
|
|
echo "Skip setting ${prop}"
|
2017-11-01 05:42:44 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2019-04-03 20:23:19 +00:00
|
|
|
function customizeServerProps {
|
2017-11-01 05:42:44 +00:00
|
|
|
if [ -n "$WHITELIST" ]; then
|
|
|
|
echo "Creating whitelist"
|
2018-01-28 12:16:45 +00:00
|
|
|
setServerProp "whitelist" "true"
|
|
|
|
setServerProp "white-list" "true"
|
2017-11-01 05:42:44 +00:00
|
|
|
fi
|
|
|
|
|
2018-04-14 18:52:46 +00:00
|
|
|
# If not provided, generate a reasonable default message-of-the-day,
|
|
|
|
# which shows up in the server listing in the client
|
2018-12-02 23:52:23 +00:00
|
|
|
if [ -z "$MOTD" ]; then
|
2018-04-14 18:52:46 +00:00
|
|
|
# snapshot is the odd case where we have to look at version to identify that label
|
|
|
|
if [[ ${ORIGINAL_TYPE} == "VANILLA" && ${VERSION} == "SNAPSHOT" ]]; then
|
|
|
|
label=SNAPSHOT
|
|
|
|
else
|
|
|
|
label=${ORIGINAL_TYPE}
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Convert label to title-case
|
|
|
|
label=${label,,}
|
|
|
|
label=${label^}
|
|
|
|
MOTD="A ${label} Minecraft Server powered by Docker"
|
|
|
|
fi
|
|
|
|
|
2019-01-12 15:32:30 +00:00
|
|
|
setServerProp "server-name" "$SERVER_NAME"
|
2018-02-12 16:26:44 +00:00
|
|
|
setServerProp "server-port" "$SERVER_PORT"
|
2017-11-01 05:42:44 +00:00
|
|
|
setServerProp "motd" "$MOTD"
|
|
|
|
setServerProp "allow-nether" "$ALLOW_NETHER"
|
|
|
|
setServerProp "announce-player-achievements" "$ANNOUNCE_PLAYER_ACHIEVEMENTS"
|
|
|
|
setServerProp "enable-command-block" "$ENABLE_COMMAND_BLOCK"
|
|
|
|
setServerProp "spawn-animals" "$SPAWN_ANIMALS"
|
|
|
|
setServerProp "spawn-monsters" "$SPAWN_MONSTERS"
|
|
|
|
setServerProp "spawn-npcs" "$SPAWN_NPCS"
|
|
|
|
setServerProp "generate-structures" "$GENERATE_STRUCTURES"
|
|
|
|
setServerProp "view-distance" "$VIEW_DISTANCE"
|
|
|
|
setServerProp "hardcore" "$HARDCORE"
|
2018-05-19 23:07:16 +00:00
|
|
|
setServerProp "snooper-enabled" "$SNOOPER_ENABLED"
|
2017-11-01 05:42:44 +00:00
|
|
|
setServerProp "max-build-height" "$MAX_BUILD_HEIGHT"
|
|
|
|
setServerProp "force-gamemode" "$FORCE_GAMEMODE"
|
2018-07-24 06:13:47 +00:00
|
|
|
setServerProp "max-tick-time" "$MAX_TICK_TIME"
|
2017-11-01 05:42:44 +00:00
|
|
|
setServerProp "enable-query" "$ENABLE_QUERY"
|
|
|
|
setServerProp "query.port" "$QUERY_PORT"
|
|
|
|
setServerProp "enable-rcon" "$ENABLE_RCON"
|
|
|
|
setServerProp "rcon.password" "$RCON_PASSWORD"
|
|
|
|
setServerProp "rcon.port" "$RCON_PORT"
|
|
|
|
setServerProp "max-players" "$MAX_PLAYERS"
|
|
|
|
setServerProp "max-world-size" "$MAX_WORLD_SIZE"
|
|
|
|
setServerProp "level-name" "$LEVEL"
|
|
|
|
setServerProp "level-seed" "$SEED"
|
|
|
|
setServerProp "pvp" "$PVP"
|
|
|
|
setServerProp "generator-settings" "$GENERATOR_SETTINGS"
|
|
|
|
setServerProp "online-mode" "$ONLINE_MODE"
|
2018-04-14 18:01:34 +00:00
|
|
|
setServerProp "allow-flight" "$ALLOW_FLIGHT"
|
2018-10-06 13:08:13 +00:00
|
|
|
setServerProp "level-type" "${LEVEL_TYPE^^}"
|
2019-08-24 15:38:59 +00:00
|
|
|
setServerProp "resource-pack" "$RESOURCE_PACK"
|
|
|
|
setServerProp "resource-pack-sha1" "$RESOURCE_PACK_SHA1"
|
2017-11-01 05:42:44 +00:00
|
|
|
|
|
|
|
if [ -n "$DIFFICULTY" ]; then
|
|
|
|
case $DIFFICULTY in
|
|
|
|
peaceful|0)
|
|
|
|
DIFFICULTY=0
|
|
|
|
;;
|
|
|
|
easy|1)
|
|
|
|
DIFFICULTY=1
|
|
|
|
;;
|
|
|
|
normal|2)
|
|
|
|
DIFFICULTY=2
|
|
|
|
;;
|
|
|
|
hard|3)
|
|
|
|
DIFFICULTY=3
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "DIFFICULTY must be peaceful, easy, normal, or hard."
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
2018-01-28 12:16:45 +00:00
|
|
|
setServerProp "difficulty" "$DIFFICULTY"
|
2017-11-01 05:42:44 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "$MODE" ]; then
|
|
|
|
echo "Setting mode"
|
|
|
|
MODE_LC=$( echo $MODE | tr '[:upper:]' '[:lower:]' )
|
|
|
|
case $MODE_LC in
|
|
|
|
0|1|2|3)
|
|
|
|
;;
|
|
|
|
su*)
|
|
|
|
MODE=0
|
|
|
|
;;
|
|
|
|
c*)
|
|
|
|
MODE=1
|
|
|
|
;;
|
|
|
|
a*)
|
|
|
|
MODE=2
|
|
|
|
;;
|
|
|
|
sp*)
|
|
|
|
MODE=3
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "ERROR: Invalid game mode: $MODE"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
2018-01-28 13:45:25 +00:00
|
|
|
setServerProp "gamemode" "$MODE"
|
2017-11-01 05:42:44 +00:00
|
|
|
fi
|
2019-04-03 20:23:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Deploy server.properties file
|
|
|
|
if [[ ${TYPE} == "FEED-THE-BEAST" ]]; then
|
|
|
|
export SERVER_PROPERTIES=${FTB_DIR}/server.properties
|
|
|
|
echo "detected FTB, changing properties path to ${SERVER_PROPERTIES}"
|
|
|
|
fi
|
|
|
|
|
2019-06-08 21:47:28 +00:00
|
|
|
if [ ! -e "$SERVER_PROPERTIES" ]; then
|
2019-04-03 20:23:19 +00:00
|
|
|
echo "Creating server.properties in ${SERVER_PROPERTIES}"
|
2019-06-08 21:47:28 +00:00
|
|
|
cp /tmp/server.properties "$SERVER_PROPERTIES"
|
2019-04-03 20:23:19 +00:00
|
|
|
customizeServerProps
|
|
|
|
elif [ -n "${OVERRIDE_SERVER_PROPERTIES}" ]; then
|
|
|
|
case ${OVERRIDE_SERVER_PROPERTIES^^} in
|
|
|
|
TRUE|1)
|
|
|
|
customizeServerProps
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "server.properties already created, skipping"
|
|
|
|
;;
|
|
|
|
esac
|
2018-01-28 13:45:25 +00:00
|
|
|
else
|
|
|
|
echo "server.properties already created, skipping"
|
2017-11-01 05:42:44 +00:00
|
|
|
fi
|
|
|
|
|
2019-03-23 13:12:58 +00:00
|
|
|
exec /start-finalSetup05EnvVariables $@
|