2018-01-17 00:59:28 +01:00
|
|
|
#!/bin/sh -x
|
2019-03-30 19:31:03 +01:00
|
|
|
if [ -z "$1" ]; then
|
|
|
|
echo "No argument supplied"
|
2018-01-17 00:59:28 +01:00
|
|
|
fi
|
2019-05-02 18:07:38 +02:00
|
|
|
SERVER_SCENARIO=$1
|
2018-01-17 00:59:28 +01:00
|
|
|
|
2019-03-30 19:31:03 +01:00
|
|
|
set -euo pipefail
|
2018-01-17 00:59:28 +01:00
|
|
|
|
|
|
|
id
|
|
|
|
|
2019-03-30 19:31:03 +01:00
|
|
|
mkdir -p "$SAVES"
|
|
|
|
mkdir -p "$CONFIG"
|
|
|
|
mkdir -p "$MODS"
|
2019-05-02 18:07:38 +02:00
|
|
|
mkdir -p "$SCENARIOS"
|
2018-01-17 00:59:28 +01:00
|
|
|
|
|
|
|
#chown -R factorio /factorio
|
|
|
|
|
2019-03-30 19:31:03 +01:00
|
|
|
if [ ! -f "$CONFIG/rconpw" ]; then
|
|
|
|
pwgen 15 1 >"$CONFIG/rconpw"
|
2018-01-17 00:59:28 +01:00
|
|
|
fi
|
|
|
|
|
2019-03-30 19:31:03 +01:00
|
|
|
if [ ! -f "$CONFIG/server-settings.json" ]; then
|
|
|
|
cp /opt/factorio/data/server-settings.example.json "$CONFIG/server-settings.json"
|
2018-01-17 00:59:28 +01:00
|
|
|
fi
|
|
|
|
|
2019-03-30 19:31:03 +01:00
|
|
|
if [ ! -f "$CONFIG/map-gen-settings.json" ]; then
|
|
|
|
cp /opt/factorio/data/map-gen-settings.example.json "$CONFIG/map-gen-settings.json"
|
2018-01-17 00:59:28 +01:00
|
|
|
fi
|
|
|
|
|
2019-03-30 19:31:03 +01:00
|
|
|
if [ ! -f "$CONFIG/map-settings.json" ]; then
|
|
|
|
cp /opt/factorio/data/map-settings.example.json "$CONFIG/map-settings.json"
|
2018-01-17 00:59:28 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
exec /opt/factorio/bin/x64/factorio \
|
2019-03-30 19:31:03 +01:00
|
|
|
--port "$PORT" \
|
2019-05-02 18:07:38 +02:00
|
|
|
--start-server-load-scenario "$SERVER_SCENARIO" \
|
2019-03-30 19:31:03 +01:00
|
|
|
--server-settings "$CONFIG/server-settings.json" \
|
|
|
|
--server-whitelist "$CONFIG/server-whitelist.json" \
|
|
|
|
--server-banlist "$CONFIG/server-banlist.json" \
|
|
|
|
--rcon-port "$RCON_PORT" \
|
|
|
|
--rcon-password "$(cat "$CONFIG/rconpw")" \
|
2018-01-17 00:59:28 +01:00
|
|
|
--server-id /factorio/config/server-id.json
|