- CLI: add topology selection (-t/--topology), preview flags (--show/--report), and removable policy override (--allow-removable) (src/cli/args.rs) - Config: built-in sensible defaults; deterministic overlays for logging, fstab, removable, topology (src/config/loader.rs) - Device: discovery via /proc + /sys with include/exclude regex and removable policy (src/device/discovery.rs) - Idempotency: detection via blkid; safe emptiness checks (src/idempotency/mod.rs) - Partition: topology-driven planning (Single, DualIndependent, BtrfsRaid1, SsdHddBcachefs) (src/partition/plan.rs) - FS: planning + creation (mkfs.vfat, mkfs.btrfs, bcachefs format) and UUID capture via blkid (src/fs/plan.rs) - Orchestrator: pre-flight with preview JSON (disks, partition_plan, filesystems_planned, mount scheme). Skips emptiness in preview; supports stdout+file (src/orchestrator/run.rs) - Util/Logging/Types/Errors: process execution, tracing, shared types (src/util/mod.rs, src/logging/mod.rs, src/types.rs, src/errors.rs) - Docs: add README with exhaustive usage and preview JSON shape (README.md) Builds and unit tests pass: discovery, util, idempotency helpers, and fs parser tests.
16 lines
520 B
Rust
16 lines
520 B
Rust
//! Configuration module barrel.
|
|
//!
|
|
//! This module re-exports the config types and the loader/validator so callers
|
|
//! can `use zosstorage::config::*;` without caring about file layout.
|
|
//
|
|
// REGION: API
|
|
// api: config::types::*
|
|
// api: config::load_and_merge(cli: &crate::cli::Cli) -> crate::Result<crate::config::types::Config>
|
|
// api: config::validate(cfg: &crate::config::types::Config) -> crate::Result<()>
|
|
// REGION: API-END
|
|
|
|
pub mod loader;
|
|
|
|
pub use loader::{load_and_merge, validate};
|
|
pub use crate::types::*;
|