Add files via upload

This commit is contained in:
2026-02-10 16:42:59 +01:00
committed by GitHub
parent 4901c78549
commit 7f0f671606
2 changed files with 928 additions and 0 deletions

18
pve_snapshot/README.md Normal file
View File

@@ -0,0 +1,18 @@
# Sul nodo Proxmox (raccoglie + genera HTML)
```bash
python3 pve_inventory.py # dashboard HTML
python3 pve_inventory.py --json # HTML + JSON
python3 pve_inventory.py --json-only --stdout # solo JSON a stdout
python3 pve_inventory.py --open # genera e apre nel browser
```
# Da un JSON già esistente (su qualsiasi PC)
```bash
python3 pve_inventory.py --from snapshot.json
python3 pve_inventory.py --from snapshot.json -o report.html --open
```
# Pipeline automatica via cron
```bash
0 6 * * * python3 /root/pve_inventory.py --json -o /var/www/html/pve.html
```