mirror of
https://github.com/luzifer-docker/terraria.git
synced 2024-11-08 12:40:02 +00:00
13 lines
356 B
Bash
Executable file
13 lines
356 B
Bash
Executable file
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
if ! [ -e /data/config.ini ]; then
|
|
cp ${SERVER}/config.ini.default /data/config.ini
|
|
fi
|
|
|
|
SERVER_BINARY=$(find /home/gameserver -name 'TerrariaServer.bin.x86_64')
|
|
|
|
# FIX: The ZIP archive does not have correct permissions
|
|
chmod +x "${SERVER_BINARY}"
|
|
|
|
exec tail -f /dev/null | "${SERVER_BINARY}" -config /data/config.ini "$@"
|