factorio-docker/docker/files/scenario2map.sh

28 lines
668 B
Bash
Raw Normal View History

#!/bin/bash
set -eoux pipefail
2019-07-06 16:37:13 +02:00
if [[ -z ${1:-} ]]; then
echo "No argument supplied"
2019-02-26 20:11:21 +01:00
fi
2019-07-06 16:37:13 +02:00
SERVER_SCENARIO="$1"
mkdir -p "$SAVES"
mkdir -p "$CONFIG"
mkdir -p "$MODS"
mkdir -p "$SCENARIOS"
2019-02-26 20:11:21 +01:00
2019-07-06 16:37:13 +02:00
if [[ ! -f $CONFIG/server-settings.json ]]; then
cp /opt/factorio/data/server-settings.example.json "$CONFIG/server-settings.json"
2019-02-26 20:11:21 +01:00
fi
2019-07-06 16:37:13 +02:00
if [[ ! -f $CONFIG/map-gen-settings.json ]]; then
cp /opt/factorio/data/map-gen-settings.example.json "$CONFIG/map-gen-settings.json"
2019-02-26 20:11:21 +01:00
fi
2019-07-06 16:37:13 +02:00
if [[ ! -f $CONFIG/map-settings.json ]]; then
cp /opt/factorio/data/map-settings.example.json "$CONFIG/map-settings.json"
2019-02-26 20:11:21 +01:00
fi
exec /opt/factorio/bin/x64/factorio \
--scenario2map "$SERVER_SCENARIO"