Move logging config to main configuration file.

- Move the content of what was stored in log4rs.yml into the main config
  file, so that there is just one file to parse to get the complete
  configuration.
- Create the global switch `--home` to pass/overload the value for
  SEQUOIA_HOME in the configuration file.
This commit is contained in:
Malte Meiboom
2026-05-18 11:11:22 +02:00
parent 6611a43a24
commit 14dca91d92
5 changed files with 81 additions and 23 deletions
+7
View File
@@ -15,6 +15,13 @@ pub struct CliArgs {
)]
pub config: Option<String>,
#[clap(
long,
global = true,
help = "Certification store (SEQUOIA_HOME).",
)]
pub home: Option<String>,
#[clap(subcommand)]
pub subcommand: HuskSubcommands,
}