Private
Public Access
1
0

Compare commits

..

2 Commits

Author SHA1 Message Date
93baf71f2c docs: add tasks/roadmap.md with future work sections (#72)
Some checks failed
CI Pipeline / Rust Format Check (push) Successful in 6s
CI Pipeline / Clippy Lints (push) Successful in 53s
CI Pipeline / Rust Unit Tests (push) Failing after 2m0s
CI Pipeline / Security Audit (push) Successful in 5s
CI Pipeline / Frontend Lint & Type Check (push) Successful in 14s
CI Pipeline / Build .deb & Release (push) Has been skipped
2026-06-10 11:20:21 -05:00
27716af5d7 fix(packaging): convert CA key from SEC1 to PKCS#8 for Rust pm-ca parser (#71)
Some checks failed
CI Pipeline / Rust Format Check (push) Successful in 3s
CI Pipeline / Clippy Lints (push) Successful in 52s
CI Pipeline / Rust Unit Tests (push) Failing after 1m21s
CI Pipeline / Security Audit (push) Successful in 5s
CI Pipeline / Frontend Lint & Type Check (push) Successful in 16s
CI Pipeline / Build .deb & Release (push) Has been skipped
The Rust pm-ca crate (crates/pm-ca/src/ca.rs) only parses PKCS#8
format private keys. openssl ecparam -genkey produces SEC1 format
(BEGIN EC PRIVATE KEY), which the Rust ring/RSA parser rejects
with "parse CA private-key PEM", causing the service to crash-loop
on startup.

Proven on LPM: converting ca.key with openssl pkcs8 -topk8 -nocrypt
and restarting patch-manager-web results in:
  Root CA loaded successfully
  Listening (HTTPS) on 0.0.0.0:443
2026-06-10 10:20:46 -05:00

44
tasks/roadmap.md Normal file
View File

@ -0,0 +1,44 @@
# Linux Patch Manager — Roadmap
Future work items for the Linux Patch Manager project. Items here are candidates
for future PRs — promote them to GitHub/Gitea issues when ready to work them.
---
## How to use this file
- **Add items** under the appropriate section (or create a new section).
- **Reference issues/PRs** when known: `(#NN)` at the end of the line.
- **Promote to issues** when ready to start work — link the issue back to this file.
- **Mark completed items** with `~~strikethrough~~` and the PR/issue that closed them.
- **Don't delete completed items** — keep the audit trail.
---
## Packaging & Install
_(empty — add items here)_
## CI/CD
_(empty — add items here)_
## Security
_(empty — add items here)_
## Infrastructure
_(empty — add items here)_
## Documentation
_(empty — add items here)_
## Refactoring
_(empty — add items here)_
---
_Last updated: 2026-06-10 — created `tasks/roadmap.md`_