Files
TWS-Semaphore/README.md
2026-01-21 18:18:31 -05:00

5 lines
251 B
Markdown

# Bootstrap Oneliner
### Modifies SSH config to allow root login with a key
```
tmp=$(mktemp) && curl -fsSL https://gitea.thewrightserver.net/josh/TWS-Semaphore/raw/branch/main/bootstrap.sh -o "$tmp" && chmod +x "$tmp" && bash "$tmp"; rm -f "$tmp"
```