1
0
mirror of https://github.com/factoriotools/factorio-docker.git synced 2025-03-19 21:08:17 +02:00

30 lines
653 B
Bash
Raw Normal View History

2019-02-26 11:11:21 -08:00
#!/bin/sh -x
if [ -z "$1" ]; then
echo "No argument supplied"
2019-02-26 11:11:21 -08:00
fi
SCENARIO="$1"
2019-02-26 11:11:21 -08:00
set -euo pipefail
2019-02-26 11:11:21 -08:00
id
mkdir -p "$SAVES"
mkdir -p "$CONFIG"
mkdir -p "$MODS"
mkdir -p "$SCENARIO"
2019-02-26 11:11:21 -08:00
if [ ! -f "$CONFIG/server-settings.json" ]; then
cp /opt/factorio/data/server-settings.example.json "$CONFIG/server-settings.json"
2019-02-26 11:11:21 -08:00
fi
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 11:11:21 -08:00
fi
if [ ! -f "$CONFIG/map-settings.json" ]; then
cp /opt/factorio/data/map-settings.example.json "$CONFIG/map-settings.json"
2019-02-26 11:11:21 -08:00
fi
exec /opt/factorio/bin/x64/factorio \
--scenario2map "$SCENARIO"