This commit is contained in:
2026-03-22 12:45:15 +01:00
parent e42bf981c4
commit e0ac9a8902
2 changed files with 11 additions and 5 deletions

View File

@@ -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 !

View File

@@ -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 {} \;