KF2-SRV/SOURCES/kf2-srv

971 lines
35 KiB
Plaintext
Raw Normal View History

2020-07-08 22:25:08 +00:00
#!/bin/bash
# kf2-srv is a command line tool for managing a set of Killing Floor 2 servers.
2020-07-08 22:52:17 +00:00
# Copyright (C) 2019, 2020 GenZmeY
2020-07-08 22:25:08 +00:00
# mailto: genzmey@gmail.com
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
source /etc/steamcmd/steamcmd.conf
ScriptFullname=$(readlink -e "$0")
ScriptName=$(echo "$ScriptFullname" | awk -F '/' '{print $NF;}')
2020-07-08 22:58:10 +00:00
ScriptVersion="0.8.0"
2020-07-08 22:40:18 +00:00
2020-07-08 22:53:47 +00:00
AppServerNum="232130"
AppClientNum="232090"
2020-07-08 22:52:17 +00:00
StrangeConstUID="17825793"
2020-07-08 22:25:08 +00:00
2020-07-08 22:50:08 +00:00
DiffArray=('Normal' 'Hard' 'Suicide' 'Hell')
WaveArray=('4' '7' '10')
declare -A ModeArray
ModeArray['KFGameContent.KFGameInfo_Survival']='Survival'
ModeArray['KFGameContent.KFGameInfo_WeeklySurvival']='Weekly'
ModeArray['KFGameContent.KFGameInfo_Endless']='Endless'
ModeArray['KFGameContent.KFGameInfo_Objective']='Objective'
ModeArray['KFGameContent.KFGameInfo_VersusSurvival']='Versus'
2020-07-08 22:52:17 +00:00
2020-07-08 22:25:08 +00:00
function show_help ()
{
2020-07-08 22:52:17 +00:00
# echo "TODO: English description"
2020-07-08 22:53:47 +00:00
echo "$ScriptName v$ScriptVersion"
2020-07-08 22:30:25 +00:00
echo "Централизование управление серверами Killing Floor 2"
2020-07-08 22:25:08 +00:00
echo "Usage:"
2020-07-08 22:56:38 +00:00
echo "${ScriptName} OPTIONS stable branch"
echo "${ScriptName}-beta OPTIONS beta branch"
2020-07-08 22:25:08 +00:00
echo ""
echo "Mandatory arguments to long options are mandatory for short options too."
2020-07-08 22:30:25 +00:00
echo " -n, --new INSTANCE создает новый ЭКЗЕМПЛЯР сервера"
echo " -d, --delete [INSTANCE] удаляет указанный ЭКЗМПЛЯР сервера; если"
echo " ЭКЗЕМПЛЯР не указан, удаляет все сервера"
echo " -s, --status [INSTANCE] отображает состояние указанного ЭКЗЕМПЛЯРА"
echo " сервера; если ЭКЗЕМПЛЯР не указан,"
echo " отображает состояние всех экземпляров сервера"
echo " -u, --update при первом запуске производит установку KF2;"
echo " в дальнейшем устанавливает обновления при их"
echo " наличии"
2020-07-08 22:40:18 +00:00
echo " -v, --validate проверяет целостность файлов, при"
echo " необходимости перекачивает их."
echo " -r, --run [OPTIONS] запускает экземпляр сервера с указанными"
2020-07-08 22:30:25 +00:00
echo " ПАРАМЕТРАМИ"
2020-07-08 22:52:17 +00:00
echo " -st, --start [INSTANCE] запускает указанный ЭКЗЕМПЛЯР сервера; если"
2020-07-08 22:30:25 +00:00
echo " ЭКЗЕМПЛЯР не указан, запускает все"
echo " автозапускаемые экземпляры сервера"
2020-07-08 22:52:17 +00:00
echo " -sp, --stop [INSTANCE] останавливает указанный ЭКЗЕМПЛЯР сервера;"
2020-07-08 22:30:25 +00:00
echo " если ЭКЗЕМПЛЯР не указан, останавливает все"
echo " экземпляры сервера"
2020-07-08 22:52:17 +00:00
echo " -rs, --restart [INSTANCE] перезапускает указанный ЭКЗЕМПЛЯР сервера;"
2020-07-08 22:50:08 +00:00
echo " если ЭКЗЕМПЛЯР не указан, перезапускает"
echo " все автозапускаемые экземпляры сервера"
2020-07-08 22:52:17 +00:00
echo " -en, --enable [INSTANCE] добавляет указанный ЭКЗЕМПЛЯР сервера в"
2020-07-08 22:30:25 +00:00
echo " автозапуск; если ЭКЗЕМПЛЯР не указан,"
echo " добавляет все экземпляры сервера в автозапуск"
2020-07-08 22:52:17 +00:00
echo " -di, --disable [INSTANCE] удаляет указанный ЭКЗЕМПЛЯР сервера из"
2020-07-08 22:30:25 +00:00
echo " автозапуска; если ЭКЗЕМПЛЯР не указан,"
echo " удаляет все экземпляры сервера из автозапуска"
2020-07-08 22:58:10 +00:00
echo " -wl, --workshop-list отображает список ресурсов из SteamWorkshop"
echo " -wa, --workshop-add [MAP_ID] добавляет ресурс из SteamWorkshop по URL или"
echo " WorkshopID"
echo " -wd, --workshop-del [MAP_ID] удаляет ресурс SteamWorkshop по URL или WorkshopID"
echo " -ws, --workshop-sync синхронизирует списки сторонних карт в"
2020-07-08 22:52:17 +00:00
echo " конфигурационных файлах с имеющимися файлами"
echo " сторонних карт; синхронизирует списки карт из"
echo " SteamWorkshop между всеми экземплярами серверов"
echo "-mrs, --map-rotate-save [INSTANCE] сохраняет текущий порядок карт для"
echo " указанного ЭКЗЕМПЛЯРА сервера; если ЭКЗЕМПЛЯР"
echo " не указан, сохраняет порядок для всех ЭКЗЕМПЛЯРОВ"
echo "-mrl, --map-rotate-load [INSTANCE] применяет ранее сохраненный порядок карт"
echo " для указанного ЭКЗЕМПЛЯРА сервера; если ЭКЗЕМПЛЯР"
echo " не указан, применяет сохраненные порядки для"
echo " всех ЭКЗЕМПЛЯРОВ сервера"
echo " -bl, --ban-list отображает список заблокированных пользователей"
echo " -bs, --ban-sync синхронизирует список заблокированных"
echo " пользователей между всеми экземплярами сервера"
echo " -ba, --ban-add [BAN_ID] добавляет пользователя в список заблокированных"
echo " допустимо использовать ID3, SteamID, а также"
echo " ссылку на профиль пользователя"
echo " -bd, --ban-del [BAN_ID] удаляет пользователя из списка заблокированных"
echo " допустимо использовать ID3, SteamID, а также"
echo " ссылку на профиль пользователя"
2020-07-08 22:25:08 +00:00
echo " -h, --help display this help and exit"
}
2020-07-08 22:52:17 +00:00
2020-07-08 22:25:08 +00:00
# Use this function with non-root user only!!!
2020-07-08 22:52:17 +00:00
function run_as_root () # $*: Args
2020-07-08 22:25:08 +00:00
{
2020-07-08 22:56:38 +00:00
if [[ -n "$BetaPostfix" ]]; then
BetaPostfix="beta"
fi
2020-07-08 22:25:08 +00:00
if [[ -n $(groups "$USER" | grep -Fo 'wheel') ]]; then
2020-07-08 22:56:38 +00:00
sudo "$ScriptFullname" $BetaPostfix $*
2020-07-08 22:25:08 +00:00
else
echo "You must be root or sudo-user to run this command."
return 1
fi
}
2020-07-08 22:52:17 +00:00
function service_name () # $*: Instance[s]
2020-07-08 22:25:08 +00:00
{
2020-07-08 22:52:17 +00:00
local Services=""
for Instance in $*
do
2020-07-08 22:56:38 +00:00
Services+=" kf2-srv$BetaPostfix@$Instance.service"
2020-07-08 22:52:17 +00:00
done
echo "$Services"
2020-07-08 22:25:08 +00:00
}
function show_instances ()
{
find "$InstanceConfigDir" -maxdepth 1 -mindepth 1 -type d -printf "%f\n"
}
2020-07-08 22:52:17 +00:00
function show_enabled_instances ()
{
local EnabledInstances=""
for Instance in $(show_instances)
do
if systemctl -q is-enabled $(service_name "$Instance") ; then
EnabledInstances+=" $Instance"
fi
done
echo "$EnabledInstances"
}
2020-07-08 22:25:08 +00:00
function instance_exists () # $1: Instance
{
2020-07-08 22:52:17 +00:00
if [[ -d "$InstanceConfigDir/$1" ]]; then
2020-07-08 22:25:08 +00:00
return 0
else
return 1
fi
}
function server_exists ()
{
2020-07-08 22:56:38 +00:00
if [[ -x "$AppBin" ]]; then
2020-07-08 22:25:08 +00:00
return 0
else
return 1
fi
}
function updates_aviable ()
{
2020-07-08 22:58:10 +00:00
return 0 # steamcmd does not show updates even if they are :(
# TODO: check updates correctly (but how?)
2020-07-08 22:56:38 +00:00
if [[ -n "$BetaPostfix" ]]; then
local BetaArg="-beta preview"
fi
if steamcmd +login anonymous \
+force_install_dir $InstallDir \
+app_info_update 1 \
+app_status $AppServerNum $BetaArg \
+quit | \
grep 'install state:' | \
grep -qiF 'Update Required'; then
return 0
else
return 1
fi
2020-07-08 22:25:08 +00:00
}
2020-07-08 22:52:17 +00:00
function new_instance () # $*: InstanceName[s]
2020-07-08 22:25:08 +00:00
{
2020-07-08 22:52:17 +00:00
if [[ -z "$*" ]]; then
echo "Name of instance[s] must be set"
2020-07-08 22:25:08 +00:00
exit 1
elif ! server_exists; then
echo "You must install server first"
echo "Run \"$ScriptName --update\" to install it"
exit 1
fi
2020-07-08 22:52:17 +00:00
local MaxGamePort='7777'
local MaxQueryPort='27015'
local MaxWebAdminPort='8080'
for Instance in $(show_instances)
do
local Config="$InstanceConfigDir/$Instance/main.conf"
local GamePort=$(grep -Po '"-port=([0-9]+)' "$Config" | grep -Po '[0-9]+$')
local WebAdminPort=$(grep -Po '"-webadminport=([0-9]+)' "$Config" | grep -Po '[0-9]+$')
local QueryPort=$(grep -Po '"-queryport=([0-9]+)' "$Config" | grep -Po '[0-9]+$')
if [[ "$GamePort" -gt "$MaxGamePort" ]]; then MaxGamePort="$GamePort"; fi
if [[ "$QueryPort" -gt "$MaxQueryPort" ]]; then MaxQueryPort="$QueryPort"; fi
if [[ "$WebAdminPort" -gt "$MaxWebAdminPort" ]]; then MaxWebAdminPort="$WebAdminPort"; fi
done
for Instance in $*
do
if instance_exists "$Instance"; then
echo "Instance $Instance already exists - skip"
continue
fi
2020-07-08 22:25:08 +00:00
2020-07-08 22:52:17 +00:00
local InstanceDir="$InstanceConfigDir/$Instance"
2020-07-08 22:53:47 +00:00
local DirMode="-d -g $SteamUser -o $SteamUser -m 775"
local FileMode=" -g $SteamUser -o $SteamUser -m 664"
install $DirMode "$InstanceDir"
install $DirMode "$InstanceDir/LinuxServer"
install $FileMode "$MainConfigTemplate" "$InstanceDir/main.conf"
install $FileMode "$DefaultConfigDir/KFAI.ini" "$InstanceDir"
install $FileMode "$DefaultConfigDir/KFWeb.ini" "$InstanceDir"
install $FileMode "$DefaultConfigDir/LinuxServer-KFEngine.ini" "$InstanceDir"
install $FileMode "$DefaultConfigDir/LinuxServer-KFGame.ini" "$InstanceDir"
install $FileMode "$DefaultConfigDir/LinuxServer-KFInput.ini" "$InstanceDir"
install $FileMode "$DefaultConfigDir/LinuxServer-KFSystemSettings.ini" "$InstanceDir"
install $FileMode "$DefaultConfigDir/LinuxServer/LinuxServerEngine.ini" "$InstanceDir/LinuxServer"
install $FileMode "$DefaultConfigDir/LinuxServer/LinuxServerGame.ini" "$InstanceDir/LinuxServer"
install $FileMode "$DefaultConfigDir/LinuxServer/LinuxServerInput.ini" "$InstanceDir/LinuxServer"
install $FileMode "$DefaultConfigDir/LinuxServer/LinuxServerSystemSettings.ini" "$InstanceDir/LinuxServer"
2020-07-08 22:52:17 +00:00
((MaxGamePort++)); ((MaxQueryPort++)); ((MaxWebAdminPort++))
sed -i -r --follow-symlinks "s/-port=[0-9]+/-port=$MaxGamePort/g" "$InstanceDir/main.conf"
sed -i -r --follow-symlinks "s/-queryport=[0-9]+/-queryport=$MaxQueryPort/g" "$InstanceDir/main.conf"
sed -i -r --follow-symlinks "s/-webadminport=[0-9]+/-webadminport=$MaxWebAdminPort/g" "$InstanceDir/main.conf"
2020-07-08 22:25:08 +00:00
2020-07-08 22:56:38 +00:00
echo "Instance $Instance created. See /etc/$ScriptName/instances$BetaPostfix/$Instance for edit configuration"
2020-07-08 22:52:17 +00:00
done
2020-07-08 22:25:08 +00:00
}
2020-07-08 22:52:17 +00:00
function delete_instance () # $*: [InstanceName[s]]
2020-07-08 22:25:08 +00:00
{
2020-07-08 22:52:17 +00:00
if [[ -z "$*" ]]; then
2020-07-08 22:25:08 +00:00
echo "Are you sure you want to delete all instances? [y/N]"
local Answ="N"
read Answ
if [[ "$Answ" == "y" || "$Answ" == "Y" ]]; then
for Instance in $(show_instances)
do
stop_instance "$Instance"
delete_instance "$Instance"
done
fi
else
2020-07-08 22:52:17 +00:00
for Instance in $*
do
if instance_exists "$Instance"; then
local InstanceDir="$InstanceConfigDir/$Instance"
stop_instance "$Instance"
rm -rf "$InstanceDir"
echo "Instance $Instance removed"
else
echo "Instance $Instance not exists"
fi
done
2020-07-08 22:25:08 +00:00
fi
}
2020-07-08 22:52:17 +00:00
function show_status_implementation_body () # $*: [InstanceName[s]]
2020-07-08 22:25:08 +00:00
{
2020-07-08 22:52:17 +00:00
for Instance in $InstanceList
do
2020-07-08 22:25:08 +00:00
if systemctl -q is-enabled $(service_name "$Instance"); then
local IsEnabled="enabled"
else
local IsEnabled="disabled"
fi
if systemctl | grep $(service_name "$Instance") | grep -q 'running' ; then
local IsRuning="running"
else
2020-07-08 22:52:17 +00:00
local IsRuning="stopped"
2020-07-08 22:25:08 +00:00
fi
2020-07-08 22:50:08 +00:00
2020-07-08 22:25:08 +00:00
local Description=$(grep -P 'Description=' "$InstanceConfigDir/$Instance/main.conf" | sed -r 's/(Description=|")//g')
2020-07-08 22:40:18 +00:00
local GamePort=$(grep -Po '"-port=([0-9]+)' "$InstanceConfigDir/$Instance/main.conf" | grep -Po '[0-9]+$')
local WebAdminPort=$(grep -Po '"-webadminport=([0-9]+)' "$InstanceConfigDir/$Instance/main.conf" | grep -Po '[0-9]+$')
local QueryPort=$(grep -Po '"-queryport=([0-9]+)' "$InstanceConfigDir/$Instance/main.conf" | grep -Po '[0-9]+$')
2020-07-08 22:50:08 +00:00
local GameType=$(grep -Po 'Game=([^\?]+)' "$InstanceConfigDir/$Instance/main.conf" | sed -r 's/Game=([^?]+)/\1/g' )
local GameLength=$(grep -Po 'GameLength=([0-9]+)' "$InstanceConfigDir/$Instance/main.conf" | grep -Po '[0-9]+$')
local GameDifficulty=$(grep -Po 'Difficulty=([0-9]+)' "$InstanceConfigDir/$Instance/main.conf" | grep -Po '[0-9]+$')
local DisplayGameType=${ModeArray[$GameType]}
local DisplayGameLength=${WaveArray[$GameLength]}
local DisplayDifficulty=${DiffArray[$GameDifficulty]}
if [[ "$DisplayGameType" == 'Weekly' || \
"$DisplayGameType" == 'Endless' || \
"$DisplayGameType" == 'Versus' || \
"$DisplayGameType" == 'Objective' ]]; then
DisplayGameLength='-'
fi
if [[ "$DisplayGameType" == 'Weekly' || \
"$DisplayGameType" == 'Versus' ]]; then
DisplayDifficulty='-'
fi
echo -e "$Instance:$IsEnabled:$IsRuning:$GamePort:$QueryPort:$WebAdminPort:$DisplayGameType:$DisplayGameLength:$DisplayDifficulty:$Description"
2020-07-08 22:52:17 +00:00
done
}
function show_status_implementation_full () # $*: [InstanceName[s]]
{
local InstanceList=""
if [[ -z "$*" ]] ; then
InstanceList=$(show_instances)
2020-07-08 22:25:08 +00:00
else
2020-07-08 22:52:17 +00:00
for Instance in $*
2020-07-08 22:25:08 +00:00
do
2020-07-08 22:52:17 +00:00
if instance_exists "$Instance"; then
InstanceList+=" $Instance"
fi
2020-07-08 22:25:08 +00:00
done
fi
2020-07-08 22:52:17 +00:00
echo -e "INSTANCE:AUTORUN:STATE:P_GAME:P_QUERY:P_WEB:TYPE:LEN:DIFF:DESCRIPTION"
show_status_implementation_body "$InstanceList" | sort -t : -k 4
2020-07-08 22:25:08 +00:00
}
2020-07-08 22:52:17 +00:00
function show_status () # $*: [InstanceName[s]]
2020-07-08 22:25:08 +00:00
{
2020-07-08 22:52:17 +00:00
show_status_implementation_full $* | column -t -s :
2020-07-08 22:25:08 +00:00
}
2020-07-08 22:40:18 +00:00
function validate ()
{
2020-07-08 22:56:38 +00:00
if [[ -n "$BetaPostfix" ]]; then
local BetaArg="-beta preview"
2020-07-08 22:40:18 +00:00
fi
stop_instance
2020-07-08 22:53:47 +00:00
steamcmd +login $SteamLogin +force_install_dir $InstallDir +app_update $AppServerNum $BetaArg validate +exit
2020-07-08 22:58:10 +00:00
fix_steamclient_so
2020-07-08 22:40:18 +00:00
start_instance
}
2020-07-08 22:53:47 +00:00
function make_default_instance ()
2020-07-08 22:52:17 +00:00
{
2020-07-08 22:53:47 +00:00
local InstanceDir="$InstanceConfigDir/default"
chmod 664 \
"$DefaultConfigDir/KFAI.ini" \
"$DefaultConfigDir/KFWeb.ini" \
"$DefaultConfigDir/LinuxServer-KFEngine.ini" \
"$DefaultConfigDir/LinuxServer-KFGame.ini" \
"$DefaultConfigDir/LinuxServer-KFInput.ini" \
"$DefaultConfigDir/LinuxServer-KFSystemSettings.ini" \
"$DefaultConfigDir/LinuxServer/LinuxServerEngine.ini" \
"$DefaultConfigDir/LinuxServer/LinuxServerGame.ini" \
"$DefaultConfigDir/LinuxServer/LinuxServerInput.ini" \
"$DefaultConfigDir/LinuxServer/LinuxServerSystemSettings.ini"
dos2unix \
"$DefaultConfigDir/KFAI.ini" \
"$DefaultConfigDir/KFWeb.ini" \
"$DefaultConfigDir/LinuxServer-KFEngine.ini" \
"$DefaultConfigDir/LinuxServer-KFGame.ini" \
"$DefaultConfigDir/LinuxServer-KFInput.ini" \
"$DefaultConfigDir/LinuxServer-KFSystemSettings.ini" \
"$DefaultConfigDir/LinuxServer/LinuxServerEngine.ini" \
"$DefaultConfigDir/LinuxServer/LinuxServerGame.ini" \
"$DefaultConfigDir/LinuxServer/LinuxServerInput.ini" \
"$DefaultConfigDir/LinuxServer/LinuxServerSystemSettings.ini"
install -d -g "$SteamUser" -o "$SteamUser" -m 775 "$InstanceDir"
install -d -g "$SteamUser" -o "$SteamUser" -m 775 "$InstanceDir/LinuxServer"
install -g "$SteamUser" -o "$SteamUser" -m 664 "$MainConfigTemplate" "$InstanceDir/main.conf"
ln -s "$DefaultConfigDir/KFAI.ini" "$InstanceDir/KFAI.ini"
ln -s "$DefaultConfigDir/KFWeb.ini" "$InstanceDir/KFWeb.ini"
2020-07-08 22:58:10 +00:00
ln -s "$DefaultConfigDir/KFWebAdmin.ini" "$InstanceDir/KFWebAdmin.ini"
2020-07-08 22:53:47 +00:00
ln -s "$DefaultConfigDir/LinuxServer-KFEngine.ini" "$InstanceDir/LinuxServer-KFEngine.ini"
ln -s "$DefaultConfigDir/LinuxServer-KFGame.ini" "$InstanceDir/LinuxServer-KFGame.ini"
ln -s "$DefaultConfigDir/LinuxServer-KFInput.ini" "$InstanceDir/LinuxServer-KFInput.ini"
ln -s "$DefaultConfigDir/LinuxServer-KFSystemSettings.ini" "$InstanceDir/LinuxServer-KFSystemSettings.ini"
ln -s "$DefaultConfigDir/LinuxServer/LinuxServerEngine.ini" "$InstanceDir/LinuxServer/LinuxServerEngine.ini"
ln -s "$DefaultConfigDir/LinuxServer/LinuxServerGame.ini" "$InstanceDir/LinuxServer/LinuxServerGame.ini"
ln -s "$DefaultConfigDir/LinuxServer/LinuxServerInput.ini" "$InstanceDir/LinuxServer/LinuxServerInput.ini"
ln -s "$DefaultConfigDir/LinuxServer/LinuxServerSystemSettings.ini" "$InstanceDir/LinuxServer/LinuxServerSystemSettings.ini"
2020-07-08 22:52:17 +00:00
}
function fix_steamclient_so ()
{
rm -f "$InstallDir/linux64/steamclient.so"
rm -f "$InstallDir/steamclient.so"
rm -f "$InstallDir/Binaries/Win64/lib64/steamclient.so"
ln -s "/usr/share/steamcmd/linux64/steamclient.so" "$InstallDir/linux64/steamclient.so"
ln -s "/usr/share/steamcmd/linux64/steamclient.so" "$InstallDir/steamclient.so"
ln -s "/usr/share/steamcmd/linux64/steamclient.so" "$InstallDir/Binaries/Win64/lib64/steamclient.so"
}
2020-07-08 22:56:38 +00:00
function create_map_dirs ()
{
# space saving
local InstallDirOrig="/usr/games/kf2-srv"
local InstallDirBeta="/usr/games/kf2-srv-beta"
2020-07-08 22:58:10 +00:00
local DownloadDirOrig="$InstallDirOrig/Binaries/Win64/steamapps/workshop/content/$AppClientNum"
local CacheDirOrig="$InstallDirOrig/KFGame/Cache"
local DownloadDirBeta="$InstallDirBeta/Binaries/Win64/steamapps/workshop/content/$AppClientNum"
local CacheDirBeta="$InstallDirBeta/KFGame/Cache"
2020-07-08 22:56:38 +00:00
if [[ -z "$BetaPostfix" ]]; then # Orig
2020-07-08 22:58:10 +00:00
sudo -u "$SteamUser" install -d -m 775 "$DownloadDirOrig"
if [[ -d "$CacheDirBeta" ]]; then
ln -s "$CacheDirBeta" "$CacheDirOrig"
rm -rf "$DownloadDirOrig"
ln -s "$DownloadDirBeta" "$DownloadDirOrig"
2020-07-08 22:56:38 +00:00
else
2020-07-08 22:58:10 +00:00
sudo -u "$SteamUser" install -d -m 775 "$CacheDirOrig"
2020-07-08 22:56:38 +00:00
fi
else # Beta
2020-07-08 22:58:10 +00:00
sudo -u "$SteamUser" install -d -m 775 "$DownloadDirBeta"
if [[ -d "$CacheDirOrig" ]]; then
ln -s "$CacheDirOrig" "$CacheDirBeta"
rm -rf "$DownloadDirBeta"
ln -s "$DownloadDirOrig" "$DownloadDirBeta"
2020-07-08 22:56:38 +00:00
else
2020-07-08 22:58:10 +00:00
sudo -u "$SteamUser" install -d -m 775 "$CacheDirBeta"
2020-07-08 22:56:38 +00:00
fi
fi
}
2020-07-08 22:25:08 +00:00
function update_kf2 ()
{
2020-07-08 22:56:38 +00:00
if [[ -n "$BetaPostfix" ]]; then
local BetaArg="-beta preview"
2020-07-08 22:25:08 +00:00
fi
if ! server_exists; then # First install
2020-07-08 22:53:47 +00:00
if ! steamcmd +login $SteamLogin +force_install_dir $InstallDir +app_update $AppServerNum $BetaArg validate +exit; then
2020-07-08 22:52:17 +00:00
echo "Errors during installation - exit"
exit 1
fi
sudo -u "$SteamUser" $AppBin &
while true
do
if [[ -e "$DefaultConfigDir/KFAI.ini" ]] &&
[[ -e "$DefaultConfigDir/KFWeb.ini" ]] &&
[[ -e "$DefaultConfigDir/LinuxServer-KFEngine.ini" ]] &&
[[ -e "$DefaultConfigDir/LinuxServer-KFGame.ini" ]] &&
[[ -e "$DefaultConfigDir/LinuxServer-KFInput.ini" ]] &&
[[ -e "$DefaultConfigDir/LinuxServer-KFSystemSettings.ini" ]] &&
[[ -e "$DefaultConfigDir/LinuxServer/LinuxServerEngine.ini" ]] &&
[[ -e "$DefaultConfigDir/LinuxServer/LinuxServerGame.ini" ]] &&
[[ -e "$DefaultConfigDir/LinuxServer/LinuxServerInput.ini" ]] &&
[[ -e "$DefaultConfigDir/LinuxServer/LinuxServerSystemSettings.ini" ]]; then
break
fi
sleep 2
done
killall -KILL KFGameSteamServer.bin.x86_64
2020-07-08 22:58:10 +00:00
multini -s "$DefaultConfigDir/KFWeb.ini" "IpDrv.WebServer" "bEnabled" "true"
2020-07-08 22:56:38 +00:00
create_map_dirs
2020-07-08 22:52:17 +00:00
fix_steamclient_so
ln -s "$InstanceConfigDir" "$InstanceConfigLnk"
2020-07-08 22:53:47 +00:00
make_default_instance
2020-07-08 22:52:17 +00:00
echo "KF2 succesfully installed"
2020-07-08 22:25:08 +00:00
elif updates_aviable; then # Update
2020-07-08 22:56:38 +00:00
stop_instance
steamcmd +login $SteamLogin +force_install_dir $InstallDir +app_update $AppServerNum $BetaArg +exit
start_instance
2020-07-08 22:25:08 +00:00
fi
}
2020-07-08 22:52:17 +00:00
function start_instance () # $*: [InstanceName[s]]
2020-07-08 22:25:08 +00:00
{
2020-07-08 22:52:17 +00:00
local InstanceList="$*"
if [[ -z "$InstanceList" ]] ; then
InstanceList=$(show_enabled_instances)
fi
local InactiveServiceList=""
for Instance in $InstanceList
do
2020-07-08 22:25:08 +00:00
if instance_exists "$Instance"; then
2020-07-08 22:52:17 +00:00
local Service=$(service_name "$Instance")
if systemctl -q is-active $Service ; then
echo "Instance $Instance already running - skip"
else
InactiveServiceList+=" $Service"
fi
2020-07-08 22:25:08 +00:00
else
echo "Instance $Instance not exitst"
fi
2020-07-08 22:52:17 +00:00
done
if [[ -n "$InactiveServiceList" ]]; then
systemctl start $InactiveServiceList
2020-07-08 22:25:08 +00:00
else
2020-07-08 22:52:17 +00:00
echo "Nothing to do"
2020-07-08 22:25:08 +00:00
fi
}
2020-07-08 22:52:17 +00:00
function stop_instance () # $*: [InstanceName[s]]
2020-07-08 22:25:08 +00:00
{
2020-07-08 22:52:17 +00:00
local InstanceList="$*"
if [[ -z "$InstanceList" ]] ; then
InstanceList=$(show_instances)
fi
local ToStopInstanceList=""
for Instance in $InstanceList
do
2020-07-08 22:25:08 +00:00
if instance_exists "$Instance"; then
2020-07-08 22:52:17 +00:00
ToStopInstanceList+=" $Instance"
2020-07-08 22:25:08 +00:00
else
echo "Instance $Instance not exitst"
fi
2020-07-08 22:52:17 +00:00
done
if [[ -n "$ToStopInstanceList" ]]; then
systemctl stop $(service_name "$ToStopInstanceList")
2020-07-08 22:25:08 +00:00
else
2020-07-08 22:52:17 +00:00
echo "Nothing to do"
2020-07-08 22:25:08 +00:00
fi
}
2020-07-08 22:52:17 +00:00
function restart_instance () # $*: [InstanceName[s]]
2020-07-08 22:50:08 +00:00
{
2020-07-08 22:52:17 +00:00
local InstanceList="$*"
if [[ -z "$InstanceList" ]] ; then
InstanceList=$(show_enabled_instances)
fi
local ToRestartInstancesList=""
for Instance in $InstanceList
do
2020-07-08 22:50:08 +00:00
if instance_exists "$Instance"; then
2020-07-08 22:52:17 +00:00
ToRestartInstancesList+=" $Instance"
2020-07-08 22:50:08 +00:00
else
echo "Instance $Instance not exitst"
fi
2020-07-08 22:52:17 +00:00
done
if [[ -n "$ToRestartInstancesList" ]]; then
systemctl restart $(service_name "$ToRestartInstancesList")
2020-07-08 22:50:08 +00:00
else
2020-07-08 22:52:17 +00:00
echo "Nothing to do"
2020-07-08 22:50:08 +00:00
fi
}
2020-07-08 22:52:17 +00:00
function enable_instance () # $1*: [InstanceName[s]]
2020-07-08 22:25:08 +00:00
{
2020-07-08 22:52:17 +00:00
local InstanceList="$*"
if [[ -z "$InstanceList" ]] ; then
InstanceList=$(show_instances)
fi
local ToEnableInstanceList=""
for Instance in $InstanceList
do
2020-07-08 22:25:08 +00:00
if instance_exists "$Instance"; then
2020-07-08 22:52:17 +00:00
ToEnableInstanceList+=" $Instance"
2020-07-08 22:25:08 +00:00
else
2020-07-08 22:52:17 +00:00
echo "Instance $Instance not exist"
2020-07-08 22:25:08 +00:00
fi
2020-07-08 22:52:17 +00:00
done
if [[ -n "$ToEnableInstanceList" ]]; then
systemctl enable $(service_name "$ToEnableInstanceList")
2020-07-08 22:25:08 +00:00
else
2020-07-08 22:52:17 +00:00
echo "Nothing to do"
2020-07-08 22:25:08 +00:00
fi
}
2020-07-08 22:52:17 +00:00
function disable_instance () # $*: [InstanceName[s]]
2020-07-08 22:25:08 +00:00
{
2020-07-08 22:52:17 +00:00
local InstanceList="$*"
if [[ -z "$InstanceList" ]] ; then
InstanceList=$(show_instances)
fi
local ToDisableInstanceList=""
for Instance in $InstanceList
do
2020-07-08 22:25:08 +00:00
if instance_exists "$Instance"; then
2020-07-08 22:52:17 +00:00
ToDisableInstanceList+=" $Instance"
2020-07-08 22:25:08 +00:00
else
echo "Instance $Instance not exitst"
fi
2020-07-08 22:52:17 +00:00
done
if [[ -n "$ToDisableInstanceList" ]]; then
systemctl disable $(service_name "$ToDisableInstanceList")
2020-07-08 22:25:08 +00:00
else
2020-07-08 22:52:17 +00:00
echo "Nothing to do"
2020-07-08 22:25:08 +00:00
fi
}
function run ()
{
if [[ "$USER" == "$SteamUser" ]]; then
2020-07-08 22:52:17 +00:00
"$AppBin" $*
2020-07-08 22:25:08 +00:00
elif [[ -n $(groups "$USER" | grep -Fo 'wheel') ]] || [[ "$EUID" -eq 0 ]]; then
2020-07-08 22:52:17 +00:00
sudo -u "$SteamUser" "$AppBin" $*
2020-07-08 22:25:08 +00:00
else
echo "You must be a $SteamUser, root or sudo-user to run this command."
fi
}
2020-07-08 22:58:10 +00:00
function name_by_workshopID () # $1: WorkshopID
{
local WorkshopID="$1"
local Cache="$CacheDir/$WorkshopID"
local Result=""
if [[ -d "$Cache" ]]; then
Result=$(find "$Cache" -type f -name '*.kfm' -printf '%f\n' | head -n 1)
if [[ -z "$Result" ]]; then
Result=$(find "$Cache" -type f -name '*.u' -printf '%f\n' | head -n 1)
fi
fi
echo "$Result"
}
function workshop_list_body () # $1: WorkshopListFile
2020-07-08 22:52:17 +00:00
{
while read WorkshopID
do
2020-07-08 22:58:10 +00:00
local Cache="$CacheDir/$WorkshopID"
local Downl="$DownloadDir/$WorkshopID"
2020-07-08 22:52:17 +00:00
local Url="https://steamcommunity.com/sharedfiles/filedetails/?id=$WorkshopID"
2020-07-08 22:58:10 +00:00
local WsName=$(name_by_workshopID "$WorkshopID")
if [[ -n "$WsName" ]]; then
local WsSize=$(du -sch "$Downl" "$Cache" | tail -n 1 | grep -Po '^[^\s]+')
2020-07-08 22:53:47 +00:00
else
2020-07-08 22:58:10 +00:00
local WsSize="-"; WsName="-"
2020-07-08 22:53:47 +00:00
fi
2020-07-08 22:58:10 +00:00
echo "$WorkshopID $WsName $WsSize $Url"
2020-07-08 22:52:17 +00:00
done < "$1"
}
2020-07-08 22:58:10 +00:00
function workshop_list_full () # $1: WorkshoplistFile
2020-07-08 22:53:47 +00:00
{
2020-07-08 22:58:10 +00:00
echo "WORKSHOP_ID NAME SIZE WORKSHOP_URL"
workshop_list_body "$1" | sort -k 2
2020-07-08 22:53:47 +00:00
}
2020-07-08 22:58:10 +00:00
function workshop_list () # $1: [--human-readable]
2020-07-08 22:52:17 +00:00
{
2020-07-08 22:58:10 +00:00
local WsList=$(mktemp)
2020-07-08 22:52:17 +00:00
for Instance in $(show_instances)
do
local Config="$InstanceConfigDir/$Instance/LinuxServer-KFEngine.ini"
2020-07-08 22:58:10 +00:00
if multini -gq "$Config" "OnlineSubsystemSteamworks.KFWorkshopSteamworks" "ServerSubscribedWorkshopItems"; then
multini -g "$Config" "OnlineSubsystemSteamworks.KFWorkshopSteamworks" "ServerSubscribedWorkshopItems" >> "$WsList"
fi
2020-07-08 22:52:17 +00:00
done
2020-07-08 22:58:10 +00:00
sort -u "$WsList" -o "$WsList"
2020-07-08 22:52:17 +00:00
if [[ -n "$1" ]]; then
2020-07-08 22:58:10 +00:00
workshop_list_full "$WsList" | column -t
2020-07-08 22:52:17 +00:00
else
2020-07-08 22:58:10 +00:00
cat "$WsList"
2020-07-08 22:52:17 +00:00
fi
2020-07-08 22:58:10 +00:00
rm -f "$WsList"
2020-07-08 22:52:17 +00:00
}
function any_to_workshopID () # $1: WorkshopID/URL
2020-07-08 22:25:08 +00:00
{
2020-07-08 22:52:17 +00:00
if echo "$1" | grep -qP '^http.+'; then
local WorkshopID=$(echo "$1" | sed -r 's/.+=([0-9]+)$/\1/')
else
local WorkshopID="$1"
fi
echo "$WorkshopID"
}
2020-07-08 22:58:10 +00:00
function workshop_add () # $*: WorkshopID[s]
2020-07-08 22:52:17 +00:00
{
for Instance in $(show_instances)
do
local Config="$InstanceConfigDir/$Instance/LinuxServer-KFEngine.ini"
2020-07-08 22:58:10 +00:00
multini -ar "$Config" "IpDrv.TcpNetDriver" "DownloadManagers" "OnlineSubsystemSteamworks.SteamWorkshopDownload"
2020-07-08 22:52:17 +00:00
for Map in $*
do
local WorkshopID=$(any_to_workshopID "$Map")
2020-07-08 22:58:10 +00:00
if ! multini -gq "$Config" "OnlineSubsystemSteamworks.KFWorkshopSteamworks" "ServerSubscribedWorkshopItems" "$WorkshopID"; then
echo "Add workshop $WorkshopID to $Instance"
multini -ar "$Config" "OnlineSubsystemSteamworks.KFWorkshopSteamworks" "ServerSubscribedWorkshopItems" "$WorkshopID"
2020-07-08 22:52:17 +00:00
fi
done
done
}
2020-07-08 22:58:10 +00:00
function workshop_del () # $*: WorkshopID[s]
2020-07-08 22:52:17 +00:00
{
for Map in $*
do
local WorkshopID=$(any_to_workshopID "$Map")
2020-07-08 22:58:10 +00:00
local WsName=$(name_by_workshopID "$WorkshopID")
local Cache="$CacheDir/$WorkshopID"
local Downl="$DownloadDir/$WorkshopID"
2020-07-08 22:53:47 +00:00
echo -e "Clear cache:
$Cache
$Downl"
rm -rf "$Cache" "$Downl"
2020-07-08 22:52:17 +00:00
for Instance in $(show_instances)
do
2020-07-08 22:58:10 +00:00
local ConfigEngine="$InstanceConfigDir/$Instance/LinuxServer-KFEngine.ini"
multini -d "$ConfigEngine" "OnlineSubsystemSteamworks.KFWorkshopSteamworks" "ServerSubscribedWorkshopItems" "$WorkshopID"
if echo "$WsName" | grep -qP '\.kfm$' ; then
echo "Remove map $WorkshopID ($WsName) from $Instance"
local WsNameShort=$(echo "$WsName" | sed 's/\.kfm$//')
local ConfigGame="$InstanceConfigDir/$Instance/LinuxServer-KFGame.ini"
multini -d "$ConfigGame" "$WsNameShort KFMapSummary"
2020-07-08 22:52:17 +00:00
fi
done
done
}
2020-07-08 22:58:10 +00:00
function workshop_sync ()
2020-07-08 22:52:17 +00:00
{
2020-07-08 22:58:10 +00:00
workshop_add $(workshop_list)
2020-07-08 22:52:17 +00:00
for Instance in $(show_instances)
do
2020-07-08 22:30:25 +00:00
if instance_exists "$Instance"; then
local Config="$InstanceConfigDir/$Instance/LinuxServer-KFGame.ini"
2020-07-08 22:58:10 +00:00
for MapFile in $(find -L "$CacheDir" -type f -name '*.kfm' -printf "%f\n")
2020-07-08 22:30:25 +00:00
do
2020-07-08 22:58:10 +00:00
MapName=$(echo "$MapFile" | sed -r 's|.kfm$||')
if ! multini -gq "$Config" "$MapName KFMapSummary"; then
2020-07-08 22:53:47 +00:00
echo "Adding $MapName to $Instance."
2020-07-08 22:58:10 +00:00
multini -s "$Config" "$MapName KFMapSummary" "MapName" "$MapName"
multini -s "$Config" "$MapName KFMapSummary" "bPlayableInSurvival" "True"
multini -s "$Config" "$MapName KFMapSummary" "bPlayableInWeekly" "True"
multini -s "$Config" "$MapName KFMapSummary" "bPlayableInVsSurvival" "True"
multini -s "$Config" "$MapName KFMapSummary" "bPlayableInEndless" "True"
multini -s "$Config" "$MapName KFMapSummary" "bPlayableInObjective" "False"
fi
done
for MutFile in $(find -L "$CacheDir" -type f -name '*.u' -printf "%f\n")
do
MutName=$(echo "$MutFile" | sed -r 's|.u$||')
if ! multini -gq "$Config" "$MutName KFMutatorSummary"; then
echo "Adding $MutName to $Instance."
multini -s "$Config" "$MutName KFMutatorSummary" "ClassName" ""
2020-07-08 22:30:25 +00:00
fi
done
else
echo "Instance $Instance not exitst"
fi
2020-07-08 22:52:17 +00:00
done
}
function map_rotate_save () # $*: Instance[s]
{
local InstanceList="$*"
if [[ -z "$InstanceList" ]] ; then
InstanceList=$(show_instances)
fi
for Instance in $InstanceList
do
if instance_exists "$Instance"; then
local Config="$InstanceConfigDir/$Instance/LinuxServer-KFGame.ini"
local MapRotate="$InstanceConfigDir/$Instance/MapRotate.ini"
grep -F 'ActiveMapCycle=' "$Config" > "$MapRotate"
grep -F 'GameMapCycles=' "$Config" >> "$MapRotate"
else
echo "Instance $Instance not exitst"
fi
done
}
function map_rotate_load () # $*: Instance[s]
{
local InstanceList="$*"
if [[ -z "$InstanceList" ]] ; then
InstanceList=$(show_instances)
fi
for Instance in $InstanceList
do
if instance_exists "$Instance"; then
local Config="$InstanceConfigDir/$Instance/LinuxServer-KFGame.ini"
local MapRotate="$InstanceConfigDir/$Instance/MapRotate.ini"
if [[ -e "$MapRotate" ]]; then
sed -i --follow-symlinks -r "/(ActiveMapCycle=|GameMapCycles=)/d" "$Config"
sed -i --follow-symlinks "/\[KFGame\.KFGameInfo\]/ r $MapRotate" "$Config"
else
echo "$MapRotate not found - skip"
fi
else
echo "Instance $Instance not exitst"
fi
done
}
# conversion algorithm taken from here:
# https://github.com/noobient/killinuxfloor/blob/master/share/killinuxfloor
# thank bviktor for that :)
function steamID3_to_steamID64 () # $1: ID3
{
# steamID64 = "7656" + (steamID3 + 1197960265728)
ID64=$1
((ID64+=1197960265728))
ID64="7656${ID64}"
echo "$ID64"
}
function steamID64_to_steamID3 () # $1: ID4
{
# steamID3 = substr(steamID64, 4) - 1197960265728
ID3=${1:4}
((ID3-=1197960265728))
echo "$ID3"
}
function ban_list_ext () # $1: BanlistFile
{
local Num=1
echo "NUM STEAM_ID3 STEAM_ID64 PROFILE_URL"
while read ID3
do
local ID64=$(steamID3_to_steamID64 "$ID3")
local Url=$(curl "https://steamcommunity.com/profiles/$ID64" -s -L -I -o /dev/null -w '%{url_effective}')
echo "$Num $ID3 $ID64 $Url"
((Num++))
done < "$1"
}
function ban_list () # $1: [--human-readable]
{
local BanList=$(mktemp)
for Instance in $(show_instances)
do
local Config="$InstanceConfigDir/$Instance/LinuxServer-KFGame.ini"
2020-07-08 22:58:10 +00:00
if multini -gq "$Config" "Engine.AccessControl" "BannedIDs"; then
multini -g "$Config" "Engine.AccessControl" "BannedIDs" | sed -r 's/.+A=([0-9]+),.+/\1/' >> "$BanList"
fi
2020-07-08 22:52:17 +00:00
done
sort -u "$BanList" -o "$BanList"
if [[ -n "$1" ]]; then
ban_list_ext "$BanList" | column -t
2020-07-08 22:30:25 +00:00
else
2020-07-08 22:52:17 +00:00
cat "$BanList"
2020-07-08 22:30:25 +00:00
fi
2020-07-08 22:52:17 +00:00
rm -f "$BanList"
2020-07-08 22:25:08 +00:00
}
2020-07-08 22:52:17 +00:00
function ban_ID3 () # $1: ID3
2020-07-08 22:25:08 +00:00
{
2020-07-08 22:52:17 +00:00
ID3="$1"
for Instance in $(show_instances)
do
local Config="$InstanceConfigDir/$Instance/LinuxServer-KFGame.ini"
2020-07-08 22:58:10 +00:00
local BanStr="(Uid=(A=$ID3,B=$StrangeConstUID))"
if ! multini -gq "$Config" "Engine.AccessControl" "BannedIDs" "$BanStr"; then
2020-07-08 22:52:17 +00:00
echo "Add ban $ID3 to $Instance"
2020-07-08 22:58:10 +00:00
multini -a "$Config" "Engine.AccessControl" "BannedIDs" "$BanStr"
2020-07-08 22:52:17 +00:00
fi
done
2020-07-08 22:25:08 +00:00
}
2020-07-08 22:52:17 +00:00
function unban_ID3 () # $1: ID3
2020-07-08 22:25:08 +00:00
{
2020-07-08 22:52:17 +00:00
ID3="$1"
for Instance in $(show_instances)
do
local Config="$InstanceConfigDir/$Instance/LinuxServer-KFGame.ini"
2020-07-08 22:58:10 +00:00
local BanStr="(Uid=(A=$ID3,B=$StrangeConstUID))"
if multini -gq "$Config" "Engine.AccessControl" "BannedIDs" "$BanStr"; then
2020-07-08 22:52:17 +00:00
echo "Remove ban $ID3 from $Instance"
2020-07-08 22:58:10 +00:00
multini -d "$Config" "Engine.AccessControl" "BannedIDs" "$BanStr"
2020-07-08 22:52:17 +00:00
fi
done
}
function any_to_ID3 () # $1: ID3/ID64/Url
{
if echo "$1" | grep -qP '^http.+'; then
local Xml=$(mktemp)
curl -ss "$1/?xml=1" > "$Xml"
local ID64=$(xmllint --xpath 'string(//steamID64/text())' "$Xml")
local ID3=$(steamID64_to_steamID3 "$ID64")
rm -f "$Xml"
elif [[ $(echo "$1" | wc -m) -eq 18 ]] && echo "$1" | grep -qP '^76561[0-9]+' ; then
local ID3=$(steamID64_to_steamID3 "$1")
else
local ID3="$1"
fi
echo "$ID3"
}
function ban_add () # $*: ban list
{
if [[ -z "$*" ]]; then
echo "Nothing to do"
exit 1
fi
for Ban in $*
do
ban_ID3 $(any_to_ID3 "$Ban")
done
}
function ban_del () # $*: ban list
{
if [[ -z "$*" ]]; then
echo "Nothing to do"
exit 1
fi
for Ban in $*
do
unban_ID3 $(any_to_ID3 "$Ban")
done
}
function ban_sync ()
{
ban_list | \
while read ID3
do
ban_ID3 "$ID3"
done
2020-07-08 22:25:08 +00:00
}
2020-07-08 22:56:38 +00:00
if [[ "$1" == "beta" ]]; then
BetaPostfix="-beta"; shift
fi
InstallDir="/usr/games/kf2-srv$BetaPostfix"
AppBin="$InstallDir/Binaries/Win64/KFGameSteamServer.bin.x86_64"
DefaultConfigDir="$InstallDir/KFGame/Config"
2020-07-08 22:58:10 +00:00
DownloadDir="$InstallDir/Binaries/Win64/steamapps/workshop/content/$AppClientNum"
CacheDir="$InstallDir/KFGame/Cache"
2020-07-08 22:56:38 +00:00
InstanceConfigDir="/etc/kf2-srv/instances$BetaPostfix"
InstanceConfigLnk="$DefaultConfigDir/instances"
MainConfigTemplate="/etc/kf2-srv/main.conf.template"
2020-07-08 22:25:08 +00:00
if [[ $# -eq 0 ]]; then show_help; exit 0; fi
case $1 in
2020-07-08 22:52:17 +00:00
-h|--help ) show_help; ;;
-n|--new ) if [[ "$EUID" -eq 0 ]]; then shift; new_instance $*; else run_as_root $*; fi ;;
-d|--delete ) if [[ "$EUID" -eq 0 ]]; then shift; delete_instance $*; else run_as_root $*; fi ;;
-s|--status ) shift; show_status $*; ;;
-u|--update ) if [[ "$EUID" -eq 0 ]]; then update_kf2 ; else run_as_root $*; fi ;;
-v|--validate ) if [[ "$EUID" -eq 0 ]]; then validate ; else run_as_root $*; fi ;;
-r|--run ) shift; run $*; ;;
-st|--start ) if [[ "$EUID" -eq 0 ]]; then shift; start_instance $*; else run_as_root $*; fi ;;
-sp|--stop ) if [[ "$EUID" -eq 0 ]]; then shift; stop_instance $*; else run_as_root $*; fi ;;
-rs|--restart ) if [[ "$EUID" -eq 0 ]]; then shift; restart_instance $*; else run_as_root $*; fi ;;
-en|--enable ) if [[ "$EUID" -eq 0 ]]; then shift; enable_instance $*; else run_as_root $*; fi ;;
-di|--disable ) if [[ "$EUID" -eq 0 ]]; then shift; disable_instance $*; else run_as_root $*; fi ;;
2020-07-08 22:58:10 +00:00
-wl|--workshop-list ) if [[ "$EUID" -eq 0 ]]; then shift; workshop_list "-h" ; else run_as_root $*; fi ;;
-wa|--workshop-add ) if [[ "$EUID" -eq 0 ]]; then shift; workshop_add $*; else run_as_root $*; fi ;;
-wd|--workshop-del ) if [[ "$EUID" -eq 0 ]]; then shift; workshop_del $*; else run_as_root $*; fi ;;
-ws|--workshop-sync ) if [[ "$EUID" -eq 0 ]]; then shift; workshop_sync ; else run_as_root $*; fi ;;
2020-07-08 22:52:17 +00:00
-mrs|--map-rotate-save ) if [[ "$EUID" -eq 0 ]]; then shift; map_rotate_save $*; else run_as_root $*; fi ;;
-mrl|--map-rotate-load ) if [[ "$EUID" -eq 0 ]]; then shift; map_rotate_load $*; else run_as_root $*; fi ;;
-bl|--ban-list ) if [[ "$EUID" -eq 0 ]]; then shift; ban_list "-h" ; else run_as_root $*; fi ;;
-bs|--ban-sync ) if [[ "$EUID" -eq 0 ]]; then shift; ban_sync ; else run_as_root $*; fi ;;
-ba|--ban-add ) if [[ "$EUID" -eq 0 ]]; then shift; ban_add $*; else run_as_root $*; fi ;;
-bd|--ban-del ) if [[ "$EUID" -eq 0 ]]; then shift; ban_del $*; else run_as_root $*; fi ;;
* ) echo "Command not recognized: $1"; exit 1 ;;
2020-07-08 22:25:08 +00:00
esac