Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
- ADD_CHAIN138_TO_LEDGER_LIVE: Ledger form done; public code review repo bis-innovations/LedgerLive; init/push commands - CONTRACT_DEPLOYMENT_RUNBOOK: Chain 138 gas price 1 gwei, 36-addr check, TransactionMirror workaround - CONTRACT_*: AddressMapper, MirrorManager deployed 2026-02-12; 36-address on-chain check - NEXT_STEPS_FOR_YOU: Ledger done; steps completable now (no LAN); run-completable-tasks-from-anywhere - MASTER_INDEX, OPERATOR_OPTIONAL, SMART_CONTRACTS_INVENTORY_SIMPLE: updates - LEDGER_BLOCKCHAIN_INTEGRATION_COMPLETE: bis-innovations/LedgerLive reference Co-authored-by: Cursor <cursoragent@cursor.com>
27 lines
790 B
Bash
Executable File
27 lines
790 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
# Script to restart WSL from Windows
|
|
# Usage: Run this from Windows PowerShell: wsl bash ~/projects/proxmox/scripts/restart-wsl.sh
|
|
|
|
echo "=========================================="
|
|
echo "WSL Restart Script"
|
|
echo "=========================================="
|
|
echo ""
|
|
echo "This script will restart WSL."
|
|
echo "You can run it from Windows PowerShell with:"
|
|
echo " wsl --shutdown"
|
|
echo ""
|
|
echo "Or restart just Ubuntu with:"
|
|
echo " wsl --terminate Ubuntu"
|
|
echo ""
|
|
echo "After restart, WSL will reconnect automatically."
|
|
echo ""
|
|
echo "Current WSL status:"
|
|
wsl.exe --list --verbose 2>/dev/null || echo "Cannot check WSL status from within WSL"
|
|
echo ""
|
|
echo "To restart, run from Windows PowerShell (as Administrator if needed):"
|
|
echo " wsl --shutdown"
|
|
echo ""
|
|
|