prophunt-garrysmod/gmod/initConfig.sh

63 lines
1.9 KiB
Bash
Raw Normal View History

2019-07-21 23:04:00 +02:00
#!/bin/bash
if [ "${DEBUGGING}" = "true" ]; then
set -o xtrace
fi
set -o errexit
set -o nounset
set -o pipefail
2019-10-15 14:32:24 +02:00
CFG_PATH="${SERVER_PATH}/garrysmod/cfg/gmodserver.cfg"
2019-07-21 23:04:00 +02:00
function configReplace() {
source="$1"
target="$source \"$2\""
2019-10-15 14:32:24 +02:00
count=$(grep -Poc "($source).+" "${CFG_PATH}")
2019-07-21 23:04:00 +02:00
2019-10-15 14:32:24 +02:00
echo "[initConfig.sh]Request for replacing $source to $target, source is found $count times"
2019-07-21 23:04:00 +02:00
if [ "$count" == "1" ]; then
2019-10-15 14:32:24 +02:00
source=$(grep -Po "($source).+" "${CFG_PATH}" | sed 's/\\/\\\\/g' | sed 's/\//\\\//g')
2019-07-21 23:04:00 +02:00
target=$(echo "$target" | sed 's/\\/\\\\/g' | sed 's/\//\\\//g')
2019-10-15 14:32:24 +02:00
sed -i "s/$source/$target/g" "${CFG_PATH}"
2019-07-21 23:04:00 +02:00
elif [ "$count" == "0" ]; then
2019-10-15 14:32:24 +02:00
echo "" >> "${CFG_PATH}"
echo "$target" >> "${CFG_PATH}"
2019-07-21 23:04:00 +02:00
else
2019-10-15 14:32:24 +02:00
echo "[initConfig.sh]can't set $1 because there are multiple in"
2019-07-21 23:04:00 +02:00
fi
}
#create default server.config
# not empty: grep -q '[^[:space:]]' < 'server.cfg' && echo "not empty"
2019-10-15 14:32:24 +02:00
if [ ! -e "${CFG_PATH}" ] || [ "0" = "$(grep -oc '[^[:space:]]' "${CFG_PATH}")" ]; then
2019-07-21 23:04:00 +02:00
mkdir -p "${SERVER_PATH}/garrysmod/cfg" || true
2019-10-15 14:32:24 +02:00
cp -f "/home/server.cfg.default" "${CFG_PATH}"
chown "$USER_ID:$GROUP_ID" "${CFG_PATH}"
chmod u+rw "${CFG_PATH}"
2019-07-21 23:04:00 +02:00
fi
2019-10-15 14:32:24 +02:00
# set hostname & password, working if only one entry is in
2019-07-21 23:04:00 +02:00
if [ -n "${SERVER_NAME}" ]; then
configReplace "hostname" "$SERVER_NAME"
fi
if [ -n "${SERVER_PASSWORD}" ]; then
configReplace "sv_password" "$SERVER_PASSWORD"
fi
if [ -n "${SERVER_VOICE_ENABLE}" ]; then
configReplace "sv_voiceenable" "$SERVER_VOICE_ENABLE"
fi
#this is a simple option for myself, but you can use it too
if [ "$USE_MY_REPLACER_CONFIG" = "true" ] && [ ! -e "${SERVER_PATH}/garrysmod/data/jusito_ttt_entity_replace" ]; then
mkdir -p "${SERVER_PATH}/garrysmod/data/jusito_ttt_entity_replace"
wget -O "${SERVER_PATH}/garrysmod/data/jusito_ttt_entity_replace/config.txt" "https://raw.githubusercontent.com/jusito/ttt_entity_replace/master/config.txt.example_fas2"
fi