mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2026-02-17 07:03:57 +00:00
29 lines
687 B
Bash
29 lines
687 B
Bash
#!/bin/bash
|
|
|
|
# shellcheck source=start-utils
|
|
. "$(dirname "$0")/start-utils"
|
|
|
|
: "${RCON_CMDS_STARTUP:=}"
|
|
: "${RCON_CMDS_ON_CONNECT:=}"
|
|
: "${RCON_CMDS_ON_DISCONNECT:=}"
|
|
: "${RCON_CMDS_FIRST_CONNECT:=}"
|
|
: "${RCON_CMDS_LAST_DISCONNECT:=}"
|
|
: "${RCON_CMDS_PERIOD:=10}"
|
|
: "${SERVER_PORT:=25565}"
|
|
export RCON_CMDS_STARTUP
|
|
export RCON_CMDS_ON_CONNECT
|
|
export RCON_CMDS_ON_DISCONNECT
|
|
export RCON_CMDS_FIRST_CONNECT
|
|
export RCON_CMDS_LAST_DISCONNECT
|
|
export RCON_CMDS_PERIOD
|
|
export SERVER_PORT
|
|
|
|
log "Rcon cmds functionality enabled"
|
|
|
|
isDebugging && set -x
|
|
|
|
isNumericElseSetToDefault RCON_CMDS_PERIOD 10
|
|
checkIfNotZeroElseSetToDefault RCON_CMDS_PERIOD 10
|
|
|
|
"$(dirname "$0")/auto/rcon-cmds-daemon.sh" &
|