diff --git a/citadel-image/src/main.rs b/citadel-image/src/main.rs index da41bee..be644e3 100644 --- a/citadel-image/src/main.rs +++ b/citadel-image/src/main.rs @@ -160,9 +160,12 @@ fn install_rootfs(arg_matches: &ArgMatches) -> Result<()> { } let img = load_image(arg_matches)?; + + info!("Verifying header signature"); img.header().verify_signature()?; if !arg_matches.is_present("skip-sha") { + info!("Verifying sha256 hash of image"); let shasum = img.generate_shasum()?; if shasum != img.metainfo().shasum() { bail!("image file does not have expected sha256 value");