Adding upstream version 0.5.4.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
6dc19540ee
commit
19551ac12c
23 changed files with 6571 additions and 0 deletions
15
build/main.rs
Normal file
15
build/main.rs
Normal 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(())
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue