Compare commits
9 Commits
Author | SHA1 | Date | |
---|---|---|---|
3d2a1344e0 | |||
279cc67949 | |||
c3caaeec43 | |||
919b1f7ff5 | |||
da14c2fe32 | |||
2cbf335169 | |||
ffce77fc41 | |||
6f26d5cd85 | |||
e9a1095316 |
37
README.md
37
README.md
@ -1,24 +1,27 @@
|
|||||||
# kf2-srv
|
# KF2-SRV
|
||||||
*Killing Floor 2 server tool for RHEL8/CentOS8*
|
*Killing Floor 2 server tool for RHEL8/CentOS8*
|
||||||
|
|
||||||
[](https://github.com/GenZmeY/kf2-srv/actions?query=workflow%3A%22build+release%22)
|
[](https://github.com/GenZmeY/KF2-SRV/actions?query=workflow%3A%22build+release%22)
|
||||||
[/badge.svg?branch=master)](https://github.com/GenZmeY/kf2-srv/actions?query=workflow%3A%22tests+%28master%29%22)
|
[/badge.svg?branch=master)](https://github.com/GenZmeY/KF2-SRV/actions?query=workflow%3A%22tests+%28master%29%22)
|
||||||
[/badge.svg?branch=dev)](https://github.com/GenZmeY/kf2-srv/actions?query=workflow%3A%22tests+%28dev%29%22)
|
[/badge.svg?branch=dev)](https://github.com/GenZmeY/KF2-SRV/actions?query=workflow%3A%22tests+%28dev%29%22)
|
||||||
[](https://github.com/genzmey/kf2-srv/releases/latest)
|
[](https://github.com/genzmey/KF2-SRV/releases/latest)
|
||||||
[](https://github.com/genzmey/kf2-srv/releases/latest)
|
[](https://github.com/genzmey/KF2-SRV/releases/latest)
|
||||||
|

|
||||||
|
|
||||||
# Features
|
# Readme under construction
|
||||||
...
|
`¯\_(ツ)_/¯`
|
||||||
|
|
||||||
# Build
|
But you can find actual rpm packages here: https://github.com/GenZmeY/KF2-SRV/releases
|
||||||
...
|
And basic usage information here: https://github.com/GenZmeY/KF2-SRV/blob/master/SOURCES/README
|
||||||
|
**Filesystem:**
|
||||||
|
configs: `/etc/kf2-srv/`
|
||||||
|
game server: `/usr/games/kf2-srv`
|
||||||
|
game server (beta): `/usr/games/kf2-srv-beta`
|
||||||
|
cache: `/var/cache/kf2-srv`
|
||||||
|
logs: `/var/log/kf2-srv`
|
||||||
|
logs (beta): `/var/logs/kf2-srv`
|
||||||
|
|
||||||
# Install
|
You also need multini and steamcmd dependencies which can be found in my repo: https://repo.ayano.su/el8/x86_64/
|
||||||
...
|
|
||||||
|
|
||||||
# Usage
|
|
||||||
...
|
|
||||||
|
|
||||||
# License
|
# License
|
||||||

|
[GNU GPLv3](LICENSE)
|
||||||
...
|
|
||||||
|
@ -29,3 +29,6 @@ MutNames['ZedCustom.ZedCustomMut']='ZedVarients'
|
|||||||
IniPermissions=664
|
IniPermissions=664
|
||||||
IniGroup=steam
|
IniGroup=steam
|
||||||
|
|
||||||
|
# if true all steamclient.so will be replaced by symlinks to:
|
||||||
|
# /usr/games/steamcmd/linux64/steamclient.so
|
||||||
|
FixSteamclientLib=True
|
||||||
|
@ -96,9 +96,10 @@ function game_validate ()
|
|||||||
local BetaArg="-beta preview"
|
local BetaArg="-beta preview"
|
||||||
fi
|
fi
|
||||||
instance_stop
|
instance_stop
|
||||||
|
remove_symlink_steamclient_so
|
||||||
steamcmd +login $SteamLogin +force_install_dir $InstallDir +app_update $AppServerNum $BetaArg validate +exit
|
steamcmd +login $SteamLogin +force_install_dir $InstallDir +app_update $AppServerNum $BetaArg validate +exit
|
||||||
apply_patch
|
apply_patch
|
||||||
fix_steamclient_so
|
create_symlink_steamclient_so
|
||||||
instance_start
|
instance_start
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -107,6 +108,8 @@ function first_install ()
|
|||||||
include /etc/steamcmd/steamcmd.conf
|
include /etc/steamcmd/steamcmd.conf
|
||||||
include /etc/kf2-srv/bot.conf
|
include /etc/kf2-srv/bot.conf
|
||||||
|
|
||||||
|
remove_symlink_steamclient_so
|
||||||
|
|
||||||
if ! steamcmd +login $SteamLogin +force_install_dir $InstallDir +app_update $AppServerNum $BetaArg validate +exit; then
|
if ! steamcmd +login $SteamLogin +force_install_dir $InstallDir +app_update $AppServerNum $BetaArg validate +exit; then
|
||||||
echo "Errors during installation - exit"
|
echo "Errors during installation - exit"
|
||||||
exit 1
|
exit 1
|
||||||
@ -199,7 +202,7 @@ function first_install ()
|
|||||||
|
|
||||||
killall -KILL KFGameSteamServer.bin.x86_64; sleep 1
|
killall -KILL KFGameSteamServer.bin.x86_64; sleep 1
|
||||||
create_cache
|
create_cache
|
||||||
fix_steamclient_so
|
create_symlink_steamclient_so
|
||||||
ln -s "$InstanceConfigDir" "$DefaultConfigDir/instances"
|
ln -s "$InstanceConfigDir" "$DefaultConfigDir/instances"
|
||||||
make_default_instance
|
make_default_instance
|
||||||
apply_patch
|
apply_patch
|
||||||
@ -241,14 +244,30 @@ function create_cache ()
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
function fix_steamclient_so ()
|
function remove_symlink_steamclient_so ()
|
||||||
{
|
{
|
||||||
|
include /etc/kf2-srv/kf2-srv.conf
|
||||||
|
|
||||||
|
if echo "$FixSteamclientLib" | grep -qiF 'true'; then
|
||||||
rm -f "$InstallDir/linux64/steamclient.so"
|
rm -f "$InstallDir/linux64/steamclient.so"
|
||||||
rm -f "$InstallDir/steamclient.so"
|
rm -f "$InstallDir/steamclient.so"
|
||||||
rm -f "$InstallDir/Binaries/Win64/lib64/steamclient.so"
|
rm -f "$InstallDir/Binaries/Win64/lib64/steamclient.so"
|
||||||
|
else
|
||||||
|
test -L "$InstallDir/linux64/steamclient.so" && rm -f "$InstallDir/linux64/steamclient.so"
|
||||||
|
test -L "$InstallDir/steamclient.so" && rm -f "$InstallDir/steamclient.so"
|
||||||
|
test -L "$InstallDir/Binaries/Win64/lib64/steamclient.so" && rm -f "$InstallDir/Binaries/Win64/lib64/steamclient.so"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
function create_symlink_steamclient_so ()
|
||||||
|
{
|
||||||
|
include /etc/kf2-srv/kf2-srv.conf
|
||||||
|
|
||||||
|
if echo "$FixSteamclientLib" | grep -qiF 'true'; then
|
||||||
ln -s "/usr/games/steamcmd/linux64/steamclient.so" "$InstallDir/linux64/steamclient.so"
|
ln -s "/usr/games/steamcmd/linux64/steamclient.so" "$InstallDir/linux64/steamclient.so"
|
||||||
ln -s "/usr/games/steamcmd/linux64/steamclient.so" "$InstallDir/steamclient.so"
|
ln -s "/usr/games/steamcmd/linux64/steamclient.so" "$InstallDir/steamclient.so"
|
||||||
ln -s "/usr/games/steamcmd/linux64/steamclient.so" "$InstallDir/Binaries/Win64/lib64/steamclient.so"
|
ln -s "/usr/games/steamcmd/linux64/steamclient.so" "$InstallDir/Binaries/Win64/lib64/steamclient.so"
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
function make_default_instance () # $1: Dir
|
function make_default_instance () # $1: Dir
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
%global steamuser steam
|
%global steamuser steam
|
||||||
|
|
||||||
Name: kf2-srv
|
Name: kf2-srv
|
||||||
Version: 0.17.1
|
Version: 0.18.1
|
||||||
Release: 1%{dist}
|
Release: 1%{dist}
|
||||||
Summary: Killing Floor 2 server
|
Summary: Killing Floor 2 server
|
||||||
Group: Amusements/Games
|
Group: Amusements/Games
|
||||||
@ -101,6 +101,12 @@ if [[ $1 == 1 ]]; then # Install
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 22 2021 GenZmeY <genzmey@gmail.com> - 0.18.1-1
|
||||||
|
- fix "FixSteamclientLib" setting.
|
||||||
|
|
||||||
|
* Tue Jun 22 2021 GenZmeY <genzmey@gmail.com> - 0.18.0-1
|
||||||
|
- add FixSteamclientLib setting to config.
|
||||||
|
|
||||||
* Sat Feb 27 2021 GenZmeY <genzmey@gmail.com> - 0.17.1-1
|
* Sat Feb 27 2021 GenZmeY <genzmey@gmail.com> - 0.17.1-1
|
||||||
- fix the start of the original app.
|
- fix the start of the original app.
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user