Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature]: LGSM Installation Support #158

Open
Rsslone opened this issue Sep 20, 2024 · 1 comment
Open

[Feature]: LGSM Installation Support #158

Rsslone opened this issue Sep 20, 2024 · 1 comment
Assignees

Comments

@Rsslone
Copy link

Rsslone commented Sep 20, 2024

Information

A popular way to deploy game servers on linux is with LinuxGSM. I've dabbled with trying to get it installed using it, but I've ran into some confusing issues. Can you support installs using LSGM? Thanks!

@TangoCash
Copy link

TangoCash commented Nov 18, 2024

I use these modded server with lgsm.
I just install the cs2 server with lgsm as usual, and use this script for (initial) update:
./cs2server stop
echo 'Download last release'
wget --quiet --show-progress https://github.com/kus/cs2-modded-server/archive/refs/heads/master.zip
echo 'Unpack last release'
unzip -o -qq master.zip
echo 'Delete addons'
rm -rf serverfiles/game/csgo/addons
echo 'Install new addons'
cp -R cs2-modded-server-master/game/csgo/ serverfiles/game/
echo 'Add custom files'
if [ -d "cs2-modded-server-customfiles/" ]; then
cp -R cs2-modded-server-customfiles/* serverfiles/game/csgo/
fi
echo 'Cleanup'
rm -rf cs2-modded-server-master master.zip
./cs2server start

(I also add a patch to lgsm to check and add metamod in gameinfo.gi before startup e.g. after cs2 update)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants