mirror of
https://github.com/luzifer-docker/teeworlds.git
synced 2024-11-08 12:40:02 +00:00
8 lines
147 B
Bash
8 lines
147 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if ! [ -e /data/config.cfg ]; then
|
||
|
cp /opt/config.dist.cfg /data/config.cfg
|
||
|
fi
|
||
|
|
||
|
exec /opt/teeworlds/teeworlds_srv -f /data/config.cfg
|