This commit is contained in:
CroneKorkN 2025-08-10 19:32:06 +02:00
parent ed7282feab
commit 1c749d5f29
Signed by: cronekorkn
SSH key fingerprint: SHA256:v0410ZKfuO1QHdgKBsdQNF64xmTxOF8osF1LIqwTcVw
3 changed files with 21 additions and 2 deletions

View file

@ -5,9 +5,9 @@ mkdir -p /opt/l4d2 /tmp/dumps
chown steam:steam /opt/l4d2 /tmp/dumps chown steam:steam /opt/l4d2 /tmp/dumps
dpkg --add-architecture i386 dpkg --add-architecture i386
apt update apt update
apt install libc6:i386 lib32z1 apt install -y libc6:i386 lib32z1
function steam() { sudo -Hiu steam $* } function steam() { sudo -Hiu steam $@ }
# -- STEAM -- # # -- STEAM -- #
@ -68,6 +68,8 @@ true
# -- SERVERS -- # # -- SERVERS -- #
exit 0
steam mkdir -p /opt/l4d2/servers steam mkdir -p /opt/l4d2/servers
# -- SERVER PVE1 -- # # -- SERVER PVE1 -- #

View file

View file

@ -0,0 +1,17 @@
defaults = {
'apt': {
'packages': {
'libc6_i386': {}, # installs libc6:i386
'lib32z1': {},
'unzip': {},
},
},
'left4dead2': {
'servers': {},
},
'nftables': {
'input': {
'udp dport { 27005, 27020 } accept',
},
},
}