Skip to content

Commit c33fc58

Browse files
committed
Upgrading OldUnreal patch, Debian version (#73)
1 parent bd1c8f0 commit c33fc58

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/build-linux-image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: linux/amd64
1+
name: linux/x86-64
22

33
on:
44
schedule:
@@ -26,7 +26,7 @@ jobs:
2626
uses: docker/build-push-action@v6.18.0
2727
with:
2828
context: .
29-
file: ./linux.Dockerfile
29+
file: ./linux.x86-64.Dockerfile
3030
tags: |
3131
lacledeslan/gamesvr-ut99:latest
3232
ghcr.io/lacledeslan/gamesvr-ut99:latest
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ ARG contentServer=content.lacledeslan.net
77

88
RUN echo "Downloading UT99 Dedicated Server Assets" &&`
99
mkdir --parents /tmp/ &&`
10-
curl -sSL "http://${contentServer}/fastDownloads/_installers/ut99/ut99-server-469e-linux.tar.xz" -o /tmp/ut99-server.tar.xz &&`
10+
curl -sSL "http://${contentServer}/fastDownloads/_installers/ut99/ut99-server-x86-469e-linux.tar.xz" -o /tmp/ut99-server-x86.tar.xz &&`
1111
echo "Validating download against known hash" &&`
12-
echo "c7a249b4b0b7513abc77f58f3588eb80e3f2ca21900b5637e16dd3d7d1c21106 /tmp/ut99-server.tar.xz" | sha256sum -c - &&`
12+
echo "0abcc9c1e21db7d6273ec1e22fff6b24324ddabdb27360278216e6ea00b258aa /tmp/ut99-server-x86.tar.xz" | sha256sum -c - &&`
1313
echo "Extracting UT99 Dedicated Server Assets" &&`
14-
tar -xJvf /tmp/ut99-server.tar.xz -C /output/ &&`
14+
tar -xJvf /tmp/ut99-server-x86.tar.xz -C /output/ &&`
1515
rm -f /tmp/*.xz
1616

1717
#=======================================================================
18-
FROM debian:bookworm-slim
18+
FROM debian:trixie-slim
1919

2020
HEALTHCHECK NONE
2121

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This UT99 server was built from the following content:
1515
3. DE Bonus Pack (a.k.a. Bonus Pack 2): Contains three new mutators (Team Beacon, Volatile Ammo and Volatile Weapon) and two new maps: CTF-HallOfGiants and CTF-Orbital.
1616
4. Inoxx Bonus Pack (a.k.a. Bonus Pack 3): Contains six new maps: CTF-Face][, CTF-High, CTF-Kosov, CTF-Nucleus, DM-Crane and DM-SpaceNoxx.
1717
5. Christmas Bonus Pack (a.k.a. Bonus Pack 4): Includes two new models (Warboss and Xan Mk. II) and 12 new maps: CTF-Beatitude, CTF-EpicBoy, CTF-Face-SE, CTF-Ratchet, DM-Bishop, DM-Closer, DM-Grit-TOURNEY, DM-Viridian-TOURNEY, DOM-Bullet, DOM-CiDom, DOM-Lament][ and DOM-WolfsBay.
18-
6. [OldUnreal Community Patch - version 469e-rc9](https://github.com/OldUnreal/UnrealTournamentPatches)
18+
6. [OldUnreal Community Patch - version 469e (final)](https://github.com/OldUnreal/UnrealTournamentPatches)
1919

2020
## Linux
2121

@@ -72,7 +72,7 @@ On the command line it will look like this.
7272
docker run -it --rm --net=host lacledeslan/gamesvr-ut99 /app/ucc server dm-Turbine?game=Botpack.DeathMatchPlus ini=UnrealTournament-Online.ini log=logfile.log -nohomedir -adminconsole -http
7373
```
7474
75-
In the UnrealTournament.ini file just set bEnabled to true, remember the port number, userid, and password. You will be able to login to the server with a web browser. Just go to http://ipaddress:port on your browser. Currently putting in the AdminPassword field into the launchstring does not work.
75+
In the UnrealTournament.ini file just set bEnabled to true, remember the port number, userid, and password. You will be able to login to the server with a web browser. Just go to http://ipaddress:port on your browser. Currently putting in the AdminPassword field into the launchstring does not work.
7676
7777
```shell
7878
[UTServerAdmin.UTServerAdmin]

0 commit comments

Comments
 (0)