New tools and deploy
Some checks failed
Generate README / build (push) Failing after 21s

This commit is contained in:
2025-09-28 17:09:17 -04:00
parent 93d373984b
commit e0d1a9193f
5 changed files with 512 additions and 1 deletions

View File

@@ -1,3 +1,43 @@
# tools
Just a collection of tools that I use
Auto-generated README. Do not edit by hand.
This file is regenerated by `scripts/generate_readme.sh` on every push.
## Shell (.sh)
Run on Linux/macOS using curl:
### fakepve.sh
```bash
curl -fsSL -o fakepve.sh "https://git.hudsonriggs.systems/HRiggs/tools/raw/branch/main/fakepve.sh" && chmod +x fakepve.sh && ./"fakepve.sh"
```
### setup_deploy_user.sh
```bash
curl -fsSL -o setup_deploy_user.sh "https://git.hudsonriggs.systems/HRiggs/tools/raw/branch/main/setup_deploy_user.sh" && chmod +x setup_deploy_user.sh && ./"setup_deploy_user.sh"
```
### selfsigned_certs.sh
```bash
curl -fsSL -o selfsigned_certs.sh "https://git.hudsonriggs.systems/HRiggs/tools/raw/branch/main/selfsigned_certs.sh" && chmod +x selfsigned_certs.sh && ./"selfsigned_certs.sh"
```
## Windows (.bat)
Run from PowerShell:
### win-mao.bat
```powershell
$dest = Join-Path $env:TEMP "win-mao.bat";
Invoke-WebRequest -Uri "https://git.hudsonriggs.systems/HRiggs/tools/raw/branch/main/win-mao.bat" -OutFile $dest;
& $dest
```
---
Generated from repo: `https://git.hudsonriggs.systems/HRiggs/tools` on branch `main`.