mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-26 17:19:30 +00:00
* docs(windows): fix WSL gateway-autostart recipe for WSL ≥ 2.6.1.0 Replace /bin/true with dbus-launch true to work around the WSL ≥ 2.6.1.0 idle-termination regression (microsoft/WSL #13416): the distro exits 15-20 s after the last wsl.exe client detaches even with loginctl linger and an active user service. dbus-launch true keeps a child-of-init process alive (workaround from microsoft/WSL discussion #9245, validated on WSL 2.7.3.0). Also replace /ru SYSTEM with /ru "$env:USERNAME". Per-user WSL distros (the default setup) are not enumerable by the SYSTEM account — the task runs silently without starting the distro. Running as the installing user account fixes this; Windows prompts for the password at task creation time. Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com> * docs(windows): add dbus-x11 prerequisite for WSL keepalive dbus-launch is provided by dbus-x11, which is not installed by default on fresh Ubuntu WSL distros. Without it the scheduled task hits command-not-found silently. Add the apt-get install step before the linger and gateway-install steps so the recipe is self-contained. Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>