From dd7df8ce18e2c352159debcbfdcdb723a6c5cff0 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 20 Jun 2026 17:19:04 +0000 Subject: [PATCH] wolf: mount host timezone into Steam container /etc/localtime and /etc/timezone are bind-mounted read-only so the Steam container shows the correct local time. A wrong clock causes EA App install scripts to hang indefinitely (SSL/token validation against EA's servers fails when the client clock is skewed). Fix the host clock first: sudo timedatectl set-ntp true Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01D8ckUJQtj1pH8jtAddBDZs --- services/wolf.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/wolf.sh b/services/wolf.sh index 558ba94..189e5f8 100644 --- a/services/wolf.sh +++ b/services/wolf.sh @@ -1059,7 +1059,7 @@ CATALOG = { name='WolfSteam', title='Steam', icon='https://games-on-whales.github.io/wildlife/apps/steam/assets/icon.png', image='ghcr.io/games-on-whales/steam:edge', - mounts=[], # Steam home lives on the game drive via Wolf's state folder + mounts=['/etc/localtime:/etc/localtime:ro', '/etc/timezone:/etc/timezone:ro'], env=['PROTON_LOG=1', 'RUN_SWAY=true', 'GOW_REQUIRED_DEVICES=/dev/input/* /dev/dri/* /dev/nvidia*'], cap_add=['SYS_ADMIN', 'SYS_NICE', 'SYS_PTRACE', 'NET_RAW', 'MKNOD', 'NET_ADMIN'], @@ -1615,7 +1615,7 @@ CATALOG = { name='WolfSteam', title='Steam', icon='https://games-on-whales.github.io/wildlife/apps/steam/assets/icon.png', image='ghcr.io/games-on-whales/steam:edge', - mounts=[], # Steam home lives on the game drive via Wolf's state folder + mounts=['/etc/localtime:/etc/localtime:ro', '/etc/timezone:/etc/timezone:ro'], env=['PROTON_LOG=1', 'RUN_SWAY=true', 'GOW_REQUIRED_DEVICES=/dev/input/* /dev/dri/* /dev/nvidia*'], cap_add=['SYS_ADMIN', 'SYS_NICE', 'SYS_PTRACE', 'NET_RAW', 'MKNOD', 'NET_ADMIN'],