2017-04-24 18:00:45 +02:00
|
|
|
#!/bin/sh -x
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
SAVES=/factorio/saves
|
|
|
|
CONFIG=/factorio/config
|
|
|
|
|
|
|
|
mkdir -p $SAVES
|
|
|
|
mkdir -p /factorio/mods
|
|
|
|
mkdir -p $CONFIG
|
|
|
|
|
|
|
|
if [ ! -f $CONFIG/rconpw ]; then
|
|
|
|
echo $(pwgen 15 1) > $CONFIG/rconpw
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -f $CONFIG/server-settings.json ]; then
|
|
|
|
cp /opt/factorio/data/server-settings.example.json $CONFIG/server-settings.json
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -f $CONFIG/map-gen-settings.json ]; then
|
|
|
|
cp /opt/factorio/data/map-gen-settings.example.json $CONFIG/map-gen-settings.json
|
|
|
|
fi
|
|
|
|
|
2017-06-06 19:20:10 +02:00
|
|
|
if [ ! -f $CONFIG/map-settings.json ]; then
|
|
|
|
cp /opt/factorio/data/map-settings.example.json $CONFIG/map-settings.json
|
|
|
|
fi
|
|
|
|
|
2017-04-24 18:00:45 +02:00
|
|
|
if ! find -L $SAVES -iname \*.zip -mindepth 1 -print | grep -q .; then
|
|
|
|
/opt/factorio/bin/x64/factorio \
|
|
|
|
--create $SAVES/_autosave1.zip \
|
2017-06-06 19:20:10 +02:00
|
|
|
--map-gen-settings $CONFIG/map-gen-settings.json \
|
|
|
|
--map-settings $CONFIG/map-settings.json
|
2017-04-24 18:00:45 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
exec /opt/factorio/bin/x64/factorio \
|
2017-04-24 18:43:32 +02:00
|
|
|
--port $PORT \
|
2017-04-24 18:00:45 +02:00
|
|
|
--start-server-load-latest \
|
|
|
|
--server-settings $CONFIG/server-settings.json \
|
2017-04-26 13:29:47 +02:00
|
|
|
--server-whitelist $CONFIG/server-whitelist.json \
|
2017-05-17 19:12:33 +02:00
|
|
|
--server-banlist $CONFIG/server-banlist.json \
|
2017-11-12 13:49:58 +01:00
|
|
|
--rcon-port $RCON_PORT \
|
2017-05-17 19:12:33 +02:00
|
|
|
--rcon-password "$(cat $CONFIG/rconpw)" \
|
|
|
|
--server-id /factorio/config/server-id.json
|