Skip to content

Instantly share code, notes, and snippets.

@socceraustin
socceraustin / install-keep-alive.ps1
Created May 14, 2026 23:51
JoGo runner keep-alive installer
# Permanent fix: keep WSL + JoGo runner alive every 5 min
# Run this in PowerShell on Lenovo (no admin needed)
# Step 1: Wake WSL
wsl -d Ubuntu -- true
# Step 2: Set up passwordless sudo (one-time, requires password)
Write-Host "Enter your Ubuntu sudo password when prompted:" -ForegroundColor Yellow
wsl -d Ubuntu -- sudo bash -c "echo 'jp ALL=(ALL) NOPASSWD: /bin/systemctl restart actions.runner.socceraustin-jogo.lenovo-wsl.service, /bin/systemctl is-active actions.runner.socceraustin-jogo.lenovo-wsl.service' | tee /etc/sudoers.d/runner-keepalive > /dev/null && chmod 0440 /etc/sudoers.d/runner-keepalive && echo SUDOERS_OK"