Release 0.2.0: dhcpsrv lease auto-discovery, SDS MAC pairing, preflight, flat archive
Release / build (push) Has been cancelled

- Auto-pick BMCs from the dhcpsrv lease table; resolve SDS by neighbouring MAC
- Preflight host-state table (power/work, BMC/UEFI/FPGA) before collection
- Single flat tar.gz bundle (no nested per-host archives); auto-open output dir
- BMC default creds admin/V36man; SDS commands run as root; clearer SSH error hints
- Pin paramiko<4 (5.x dropped ssh-rsa host keys that YADRO BMCs require)
- Timestamped crash reports under crashlogs/
This commit is contained in:
Engelgardt23
2026-06-03 17:55:38 +03:00
parent 77d02c65cf
commit 9fe967f0b2
12 changed files with 547 additions and 89 deletions
+3 -1
View File
@@ -9,7 +9,9 @@ readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "engelgardt" }]
dependencies = ["rich>=13", "paramiko>=3"]
# paramiko pinned <4: 4.x/5.x dropped ssh-rsa (SHA-1) host keys, which YADRO
# Vegman BMCs only offer — newer paramiko can't negotiate a host key with them.
dependencies = ["rich>=13", "paramiko>=3,<4"]
dynamic = ["version"]
[project.urls]