Some checks failed
CI Pipeline / Rust Format Check (push) Failing after 2s
CI Pipeline / Clippy Lints (push) Failing after 1s
CI Pipeline / Rust Unit Tests (push) Failing after 2s
CI Pipeline / Security Audit (push) Failing after 2s
CI Pipeline / Frontend Lint & Type Check (push) Failing after 3s
CI Pipeline / Build .deb & Release (push) Has been skipped
- health_poller: persist agent_version from HealthData.version - health_poller: call /system/info to update os_family, os_name, arch - enrollment: set os_family and arch from os_details during approval - enrollment: build os_name from os+os_version when name field absent - COALESCE in UPDATE preserves existing values when new data unavailable - version bump 0.1.7 -> 0.1.8
8 lines
242 B
Rust
Executable File
8 lines
242 B
Rust
Executable File
//! pm-ca — Internal Certificate Authority.
|
|
//!
|
|
//! Issues and renews mTLS client certificates for agent communication.
|
|
//! Uses rcgen + rustls. CA key stored at /etc/patch-manager/ca/.
|
|
|
|
pub mod ca;
|
|
pub use ca::{CertAuthority, IssuedCert};
|