From e0ac9a890214e3e244e6cc1a2f3af93bb3624283 Mon Sep 17 00:00:00 2001 From: chacha Date: Sun, 22 Mar 2026 12:45:15 +0100 Subject: [PATCH] fixes --- Dockerfile | 2 ++ zzz-config-live.sh | 14 +++++++++----- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5af5305..085b976 100644 --- a/Dockerfile +++ b/Dockerfile @@ -171,6 +171,8 @@ RUN chmod +x ut-install-436.run && \ tar xzf ./ut/OpenGL.ini.tar.gz -C ut-game && \ cp ut-game/System/UnrealTournament.ini ut-game/System/Default.ini && \ mv ut-game/System/UnrealTournament.ini ut-game/System/Default-opengl.ini +COPY games/ut99/ut ./ut-game/ut +RUN chmod a+x,o-w ./ut-game/ut # Note: we need to use Lenny because of live-helper # it allows creating Etch live image though ! diff --git a/zzz-config-live.sh b/zzz-config-live.sh index f8af1eb..6f72119 100644 --- a/zzz-config-live.sh +++ b/zzz-config-live.sh @@ -2,12 +2,16 @@ set -e # enabling backports repository -cat >> /etc/apt/preferences <<'EOF' +#cat >> /etc/apt/preferences <<'EOF' +# +#Package: * +#Pin: release a=etch-backports +#Pin-Priority: 990 +#EOF -Package: * -Pin: release a=etch-backports -Pin-Priority: 990 -EOF +apt-get update +apt-get -y --force-yes -t etch-backports upgrade +apt-get -y --force-yes -t etch-backports install smbclient # ensuring correct file mode (can be done in git but this is safer) find /etc/skel -type d -exec chmod u+rwx,go-rwx {} \;