1
0
Fork 0

Adding upstream version 0.5.4.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-05-06 06:52:03 +02:00
parent 6dc19540ee
commit 19551ac12c
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
23 changed files with 6571 additions and 0 deletions

15
build/main.rs Normal file
View file

@ -0,0 +1,15 @@
mod define_parser;
mod openssh;
mod src_writer;
fn main() -> anyhow::Result<()> {
// If reload SSH ALGO is not set, we don't need to do anything
if std::env::var("RELOAD_SSH_ALGO").is_err() {
return Ok(());
}
let prefs = openssh::get_my_prefs()?;
src_writer::write_source(prefs)?;
Ok(())
}