From e4adeaa4883c1d3a8970c83deca54184b0ad2f42 Mon Sep 17 00:00:00 2001 From: nlovlyn Date: Mon, 23 Mar 2026 17:23:21 -0700 Subject: [PATCH] Update install_nomad.sh Updated WSL install steps to fix error finding nvidia-smi and mounting errors. --- install/install_nomad.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install/install_nomad.sh b/install/install_nomad.sh index 0c5f8c0..b913d35 100644 --- a/install/install_nomad.sh +++ b/install/install_nomad.sh @@ -194,6 +194,8 @@ ensure_docker_installed() { # On WSL, if Docker is reachable, skip systemd checks (Docker Desktop case) if is_wsl; then + export PATH="/usr/lib/wsl/lib:$PATH" + sudo mount --make-rshared / if docker version >/dev/null 2>&1; then echo -e "${GREEN}#${RESET} Docker is reachable (WSL/Docker Desktop). Skipping systemctl checks.\\n" return 0